-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathChamp.csproj
More file actions
24 lines (22 loc) · 872 Bytes
/
Champ.csproj
File metadata and controls
24 lines (22 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Godot.NET.Sdk/4.5.1">
<Import Project="mod.build.props" />
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="Champ/localization/**/*.json"/>
<Compile Remove="Champ/**"/>
<EmbeddedResource Remove="Champ/**"/>
<None Include="Champ.json"/>
<None Include="Champ/**"/>
<None Include="ChampCode/**"/>
<Compile Include="ChampCode/**/*.cs"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Downfall.csproj"/>
</ItemGroup>
<Import Project="mod.build.targets" />
</Project>