mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
27 lines
1,021 B
XML
27 lines
1,021 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>
|
|
</PropertyGroup>
|
|
|
|
<!-- Dependency versions -->
|
|
<PropertyGroup Label="Dependency Versions">
|
|
<LuminaVersion>6.5.1</LuminaVersion>
|
|
<NewtonsoftJsonVersion>13.0.3</NewtonsoftJsonVersion>
|
|
</PropertyGroup>
|
|
|
|
<!-- Code analysis settings for all Dalamud projects. -->
|
|
<ItemGroup Label="Code Analysis">
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.4" PrivateAssets="All" />
|
|
<AdditionalFiles Include="$(MSBuildThisFileDirectory)tools\BannedSymbols.txt" />
|
|
</ItemGroup>
|
|
<!--
|
|
<PropertyGroup Label="Code Analysis">
|
|
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)tools\dalamud.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
-->
|
|
</Project>
|