-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGuardian.csproj
More file actions
24 lines (22 loc) · 893 Bytes
/
Guardian.csproj
File metadata and controls
24 lines (22 loc) · 893 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="Guardian/localization/**/*.json"/>
<Compile Remove="Guardian/**"/>
<EmbeddedResource Remove="Guardian/**"/>
<None Include="Guardian.json"/>
<None Include="Guardian/**"/>
<None Include="GuardianCode/**"/>
<Compile Include="GuardianCode/**/*.cs"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Downfall.csproj"/>
</ItemGroup>
<Import Project="mod.build.targets" />
</Project>