-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCeeLoPlugin.csproj
43 lines (40 loc) · 1.38 KB
/
CeeLoPlugin.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<!-- Import Dalamud Plugin Bootstrap -->
<Import Project="Dalamud.Plugin.Bootstrap.targets" />
<!-- General Properties -->
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<LangVersion>preview</LangVersion>
<PlatformTarget>x64</PlatformTarget>
<RootNamespace>CeeLoPlugin</RootNamespace>
<AssemblyName>CeeLoPlugin</AssemblyName>
<Version>1.0.0</Version>
<Description>CeeLo Game Plugin for Dalamud</Description>
<OutputType>Library</OutputType>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<!-- Add ImGui.NET and other necessary dependencies -->
<ItemGroup>
<Reference Include="Dalamud">
<HintPath>$(DalamudLibPath)Dalamud.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Dalamud.Game">
<HintPath>$(DalamudLibPath)Dalamud.Game.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ImGui.NET">
<HintPath>$(DalamudLibPath)ImGui.NET.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<!-- Ensure content like images are copied correctly -->
<ItemGroup>
<Content Include="Images\icon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>false</Visible>
</Content>
</ItemGroup>
</Project>