53 lines
2.2 KiB
XML
53 lines
2.2 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Optimize>true</Optimize>
|
|
<LangVersion>7.3</LangVersion>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<EngineRootPath Condition="'$(EngineRootPath)' == ''">..</EngineRootPath>
|
|
<OutputPath>$(EngineRootPath)/bin</OutputPath>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<ExternalConsole>false</ExternalConsole>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<CodeAnalysisRuleSet>$(EngineRootPath)/OpenRA.ruleset</CodeAnalysisRuleSet>
|
|
<Nullable>disable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework Condition="'$(Mono)' == ''">net6.0</TargetFramework>
|
|
<TargetFramework Condition="'$(Mono)' != ''">netstandard2.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetPlatform Condition="$([MSBuild]::IsOsPlatform('Windows'))">win-x64</TargetPlatform>
|
|
<TargetPlatform Condition="$([MSBuild]::IsOsPlatform('Linux'))">linux-x64</TargetPlatform>
|
|
<TargetPlatform Condition="$([MSBuild]::IsOsPlatform('OSX'))">osx-x64</TargetPlatform>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<Optimize>false</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Work around an issue where Rider does not detect files in the project root using the default glob -->
|
|
<Compile Include="**/*.cs" Exclude="$(DefaultItemExcludes)" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="DisableAnalyzers" BeforeTargets="CoreCompile" Condition="'$(Configuration)'=='Release'">
|
|
<!-- Disable code style analysis on Release builds to improve compile-time performance -->
|
|
<ItemGroup Condition="'$(Configuration)'=='Release'">
|
|
<Analyzer Remove="@(Analyzer)" />
|
|
</ItemGroup>
|
|
</Target>
|
|
|
|
<!-- StyleCop -->
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="All" />
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
</Project>
|