-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDataGen.csproj
More file actions
26 lines (23 loc) · 929 Bytes
/
DataGen.csproj
File metadata and controls
26 lines (23 loc) · 929 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
25
26
<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>
<NoWarn>$(NoWarn);STS002</NoWarn>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="DataGen/localization/**/*.json"/>
<Compile Remove="DataGen/**"/>
<EmbeddedResource Remove="DataGen/**"/>
<None Include="DataGen.json"/>
<None Include="DataGen/**"/>
<None Include="DataGenCode/**"/>
<Compile Include="DataGenCode/**/*.cs"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Downfall.csproj"/>
</ItemGroup>
<Import Project="mod.build.targets" />
</Project>