-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDirectory.Build.props
43 lines (41 loc) · 1.85 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<Product>TERA Arise</Product>
<Description>$(Product) is a game resurrection project for the final build of TERA EU.</Description>
<Company>$(Product)</Company>
<Authors>$(Company) Contributors</Authors>
<Copyright>Copyright © $(Authors)</Copyright>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AnalysisLevel>latest-all</AnalysisLevel>
<DisableRuntimeMarshalling>true</DisableRuntimeMarshalling>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<EnablePreviewFeatures>true</EnablePreviewFeatures>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<ImplicitUsings>true</ImplicitUsings>
<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
<LangVersion>latest</LangVersion>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<Nullable>enable</Nullable>
<PackRelease>false</PackRelease>
<PublishRelease>false</PublishRelease>
<RuntimeIdentifiers>
linux-arm64;
linux-x64;
win-arm64;
win-x64
</RuntimeIdentifiers>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<TargetFramework>net9.0</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<UseArtifactsOutput>true</UseArtifactsOutput>
<ArtifactsPath>$(MSBuildThisFileDirectory)out</ArtifactsPath>
<ArtifactsProjectName>$([MSBuild]::MakeRelative('$(MSBuildThisFileDirectory)', '$(MSBuildProjectDirectory)'))</ArtifactsProjectName>
<ArtifactsPublishOutputName>pub</ArtifactsPublishOutputName>
</PropertyGroup>
</Project>