mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 02:07:22 +01:00
Some checks failed
Build Dalamud / Build on Windows (push) Waiting to run
Build Dalamud / Check API Compatibility (push) Blocked by required conditions
Build Dalamud / Deploy dalamud-distrib staging (push) Blocked by required conditions
Rollup changes to next version / check (api14) (push) Failing after 4s
Tag Build / Tag Build (push) Successful in 2s
25 lines
982 B
XML
25 lines
982 B
XML
<!-- Shared settings for all Dalamud projects. -->
|
|
<Project>
|
|
|
|
<PropertyGroup Label="Target">
|
|
<TargetFramework>net9.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>
|