mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-11 01:37:24 +01:00
25 lines
983 B
XML
25 lines
983 B
XML
<!-- Shared settings for all Dalamud projects. -->
|
|
<Project>
|
|
|
|
<PropertyGroup Label="Target">
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<Platforms>x64</Platforms>
|
|
<LangVersion>13.0</LangVersion>
|
|
|
|
<!-- Disable Intel CET. Causes crashes on unpatched Windows 10 systems. -->
|
|
<!-- https://github.com/dotnet/runtime/issues/108589 -->
|
|
<CETCompat>false</CETCompat>
|
|
</PropertyGroup>
|
|
|
|
<!-- Code analysis settings for all Dalamud projects. -->
|
|
<ItemGroup Label="Code Analysis">
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" PrivateAssets="All" />
|
|
<AdditionalFiles Include="$(MSBuildThisFileDirectory)tools\BannedSymbols.txt" />
|
|
</ItemGroup>
|
|
<!--
|
|
<PropertyGroup Label="Code Analysis">
|
|
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)tools\dalamud.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
-->
|
|
</Project>
|