-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathOmegaCrosspathing.csproj
32 lines (29 loc) · 1.03 KB
/
OmegaCrosspathing.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Configurations>Debug;Release</Configurations>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<RootNamespace>OmegaCrosspathing</RootNamespace>
</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>
<ItemGroup>
<None Include=".github\workflows\build.yml" />
</ItemGroup>
<ItemGroup>
<Reference Include="PathsPlusPlus">
<HintPath>$(BloonsTD6)\Mods\PathsPlusPlus.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Folder Include="Assets\Portraits\" />
</ItemGroup>
<Import Project="..\btd6.targets" />
</Project>