-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTheseus.csproj
28 lines (24 loc) · 938 Bytes
/
Theseus.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<RootNamespace>Theseus</RootNamespace>
<Configurations>Debug;Release</Configurations>
<Nullable>enable</Nullable>
<AssemblyName>Theseus</AssemblyName>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>False</Optimize>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Optimize>True</Optimize>
<DebugType>none</DebugType>
</PropertyGroup>
<Import Project="..\btd6.targets" />
<ItemGroup>
<None Remove="Displays\Lvl20DisruptorProjectileDisplay.png" />
<None Remove="DisruptorShot-Icon.png" />
<None Remove="Icon.png" />
</ItemGroup>
</Project>