mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-25 09:59:18 +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 7s
Tag Build / Tag Build (push) Successful in 3s
Fixes a docfx error, since they haven't upgraded to a Roslyn version that knows C# 14
27 lines
1 KiB
XML
27 lines
1 KiB
XML
<!-- Shared settings for all Dalamud projects. -->
|
|
<Project>
|
|
|
|
<PropertyGroup Label="Target">
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<Platforms>x64</Platforms>
|
|
|
|
<!-- preview, as docfx is late at upgrading Roslyn versions -->
|
|
<LangVersion>preview</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>
|