-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBloonFactory.csproj
More file actions
37 lines (36 loc) · 1.29 KB
/
BloonFactory.csproj
File metadata and controls
37 lines (36 loc) · 1.29 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
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>BloonFactory</RootNamespace>
<Configurations>Debug;Release</Configurations>
<Nullable>enable</Nullable>
<AssemblyName>BloonFactory</AssemblyName>
<LangVersion>latest</LangVersion>
<Optimize>False</Optimize>
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\DefaultTemplate.cstmbln" />
</ItemGroup>
<ItemGroup>
<Content Include=".github\workflows\build.yml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Assets\DefaultTemplate.cstmbln" />
</ItemGroup>
<ItemGroup>
<None Include="Modules\Display\CustomDecalModule.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="FactoryCore">
<HintPath>..\..\SteamLibrary\steamapps\common\BloonsTD6\Mods\FactoryCore.dll</HintPath>
</Reference>
<Reference Include="Il2CppNinjaKiwi.LiNK">
<HintPath>..\..\SteamLibrary\steamapps\common\BloonsTD6\MelonLoader\Il2CppAssemblies\Il2CppNinjaKiwi.LiNK.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Folder Include="Patches\" />
</ItemGroup>
<Import Project="..\btd6.targets" />
</Project>