forked from Ishigh1/AdvancedWorldGen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdvancedWorldGen.csproj
More file actions
42 lines (41 loc) · 1.55 KB
/
AdvancedWorldGen.csproj
File metadata and controls
42 lines (41 loc) · 1.55 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
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>AdvancedWorldGen</AssemblyName>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Configurations>Debug;Release;Debug release</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;SPECIALDEBUG;DEBUG;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug release|AnyCPU'">
<DefineConstants>TRACE;SPECIALDEBUG</DefineConstants>
</PropertyGroup>
<!-- General Debug : FixedSeed -->
<ItemGroup>
</ItemGroup>
<ItemGroup>
<Compile Remove="Localization\**" />
<Compile Remove="Tool\__pycache__\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Localization\**" />
<EmbeddedResource Remove="Tool\__pycache__\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Localization\**" />
<None Remove="Tool\__pycache__\**" />
<None Remove="Tool\*-*.json" />
<None Remove="Tool\Options.json" />
<None Remove="*.hjson" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Remove="Localization\**" />
<AdditionalFiles Remove="Tool\__pycache__\**" />
</ItemGroup>
</Project>