-
-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathSimpleTweaksPlugin.csproj
More file actions
26 lines (26 loc) · 1.08 KB
/
SimpleTweaksPlugin.csproj
File metadata and controls
26 lines (26 loc) · 1.08 KB
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
<Project Sdk="Dalamud.NET.Sdk/15.0.0">
<PropertyGroup>
<Version>1.14.1.1</Version>
<Configurations>Debug;Release;DebugSteamDeck;CustomCS;Test</Configurations>
<NoWarn>CS0649,CS0414,CS8618</NoWarn>
<AppendPlatformToOutputPath>false</AppendPlatformToOutputPath>
</PropertyGroup>
<PropertyGroup Label="Test" Condition="'$(Configuration)'=='Test'">
<DefineConstants>DEBUG;TEST</DefineConstants>
<OutDir>$(ProjectDir)bin/Debug</OutDir>
</PropertyGroup>
<ItemGroup>
<Reference Include="JetBrains.Annotations">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\JetBrains.Annotations.dll</HintPath>
</Reference>
<None Update="images\icon.png" CopyToOutputDirectory="Always"/>
<None Update="TweakPreviews\**" CopyToOutputDirectory="Always"/>
<None Update="Decorations\**" CopyToOutputDirectory="Always"/>
<None Remove="lib\**" />
<Compile Remove="lib\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="KamiToolKit" Version="1.1.7" />
</ItemGroup>
</Project>