-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBloonFactoryMod.csproj
More file actions
30 lines (29 loc) · 1.22 KB
/
BloonFactoryMod.csproj
File metadata and controls
30 lines (29 loc) · 1.22 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
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>BloonFactoryMod</RootNamespace>
<Configurations>Debug;Release</Configurations>
<Nullable>enable</Nullable>
<AssemblyName>BloonFactoryMod</AssemblyName>
<LangVersion>latest</LangVersion>
<Optimize>False</Optimize>
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<None Remove="API\Assets\BaseBloon.png" />
<None Remove="API\Assets\Decals\BowtieDecal.png" />
<None Remove="API\Assets\Decals\CamoDecal.png" />
<None Remove="API\Assets\Decals\DisguiseDecal.png" />
<None Remove="API\Assets\Decals\Face1Decal.png" />
<None Remove="API\Assets\Decals\FedoraDecal.png" />
<None Remove="API\Assets\Decals\HalfHorizontalBloonDecal.png" />
<None Remove="API\Assets\Decals\HalfVerticalBloonDecal.png" />
<None Remove="API\Assets\Decals\IronSwordDecal.png" />
<None Remove="API\Assets\EmptyTexture0.png" />
<None Remove="Icon.png" />
</ItemGroup>
<ItemGroup>
<Content Include=".github\workflows\build.yml" />
</ItemGroup>
<Import Project="..\btd6.targets" />
</Project>