-
Notifications
You must be signed in to change notification settings - Fork 9
/
Aequus.csproj
52 lines (43 loc) · 2.07 KB
/
Aequus.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>Aequus</AssemblyName>
<Version>2.7.3.3</Version>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<TargetFramework>net8.0</TargetFramework>
<PlatformTarget>AnyCPU</PlatformTarget>
<LangVersion>latest</LangVersion>
<!-- Documentation file for summarries. -->
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<DocumentationFile>Aequus.xml</DocumentationFile>
<!-- Emit compiler generated files so they can be used in-game for building. -->
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>sandbox</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<ItemGroup>
<!-- Libs & Packages. -->
<!--<PackageReference Include="nalyddd.tmod.imgrefgenerator" Version="1.0.4" />-->
<ProjectReference Include="SourceGenerators\SourceGenerators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" Condition="'$(Configuration)' == 'Debug'" />
<!-- Additional Files for Source Generators. -->
<AdditionalFiles Include="**\*.png" />
<AdditionalFiles Include="**\*.ogg" />
<AdditionalFiles Include="Localization\*.hjson" />
<!-- Remove misc files from compilation. -->
<AdditionalFiles Remove="**\bin\**" />
<AdditionalFiles Remove="**\obj\**" />
<AdditionalFiles Remove="Properties\**" />
<AdditionalFiles Remove="sandbox\**" />
<!-- Hide Source Generator folder and generated files. -->
<AdditionalFiles Remove="SourceGenerators\**" />
<None Remove="SourceGenerators\**" />
<EmbeddedResource Remove="SourceGenerators\**" />
<Compile Remove="SourceGenerators\**" />
<Compile Remove="$(CompilerGeneratedFilesOutputPath)/**/*.cs" Condition="'$(Configuration)' == 'Debug'" />
</ItemGroup>
<!-- Custom compiler flags for loading unfinished content. -->
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DefineConstants>POLLUTED_OCEAN;CUSTOM_RESOURCE_UI;CRAB_CREVICE_DISABLE;GEN;SEASONS;LOG_PACKETS</DefineConstants>
</PropertyGroup>
</Project>