2020-01-16 22:52:41 +00:00
<Project>
<PropertyGroup>
2023-06-08 16:34:56 +00:00
<AnalysisLevel>6</AnalysisLevel>
2023-06-08 16:42:50 +00:00
<AnalysisModeGlobalization>Recommended</AnalysisModeGlobalization>
2023-06-08 17:45:18 +00:00
<AnalysisModeMaintainability>Recommended</AnalysisModeMaintainability>
2023-06-08 17:46:26 +00:00
<AnalysisModeReliability>Recommended</AnalysisModeReliability>
2023-06-08 17:48:57 +00:00
<AnalysisModePerformance>Recommended</AnalysisModePerformance>
2023-06-08 18:23:53 +00:00
<AnalysisModeUsage>Recommended</AnalysisModeUsage>
2024-08-27 12:57:25 +00:00
<EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles> <!-- enable to copy Roslyn Source Gemerators' outputs to $(ProjectDir)/obj/.../generated -->
2023-08-30 21:08:21 +00:00
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
2024-02-12 22:09:22 +00:00
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
2022-01-30 05:56:08 +00:00
<ContinuousIntegrationBuild Condition=" '$(GITLAB_CI)' != '' Or '$(APPVEYOR)' != '' ">true</ContinuousIntegrationBuild>
2024-04-03 23:32:29 +00:00
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
2024-04-30 07:59:09 +00:00
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
2021-04-04 04:15:22 +00:00
<EnableNETAnalyzers>true</EnableNETAnalyzers>
2020-01-16 22:52:41 +00:00
<ErrorReport>prompt</ErrorReport>
2022-07-13 12:02:58 +00:00
<Features>strict</Features>
2020-09-22 10:48:13 +00:00
<IsTargetingNetFramework>$(TargetFramework.StartsWith("net4"))</IsTargetingNetFramework>
2024-05-29 19:56:36 +00:00
<GenerateDocumentationFile>true</GenerateDocumentationFile> <!-- it would be nice to rename these to *.api_reference.xml or something, but it seems https://github.com/dotnet/standard/issues/614 was never fixed -->
2024-05-30 00:23:10 +00:00
<LangVersion>12.0</LangVersion>
2024-02-12 22:09:22 +00:00
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
2024-05-29 19:56:36 +00:00
<NoWarn>$(NoWarn);CS1591;SA0001</NoWarn>
2021-01-17 23:26:51 +00:00
<Nullable>enable</Nullable>
2020-01-28 02:44:40 +00:00
<PlatformTarget>AnyCPU</PlatformTarget>
2023-03-16 00:42:52 +00:00
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
2020-01-16 22:52:41 +00:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
2024-04-30 07:59:09 +00:00
<DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
2020-01-16 22:52:41 +00:00
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<Optimize>true</Optimize>
2023-03-16 19:29:50 +00:00
<PathMap>$(MSBuildProjectDirectory)=${$(MSBuildProjectName)}/</PathMap>
2020-01-16 22:52:41 +00:00
</PropertyGroup>
2020-06-30 04:44:39 +00:00
<PropertyGroup Condition=" '$(MachineExtraCompilationFlag)' != '' ">
<DefineConstants>$(DefineConstants);$(MachineExtraCompilationFlag)</DefineConstants>
</PropertyGroup>
2020-09-22 10:48:13 +00:00
<ItemGroup>
2024-02-12 22:09:22 +00:00
<PackageReference Include="DotNetAnalyzers.DocumentationAnalyzers" PrivateAssets="all" />
<PackageReference Include="Menees.Analyzers" PrivateAssets="all" />
<PackageReference Include="Meziantou.Analyzer" PrivateAssets="all" />
<PackageReference Include="Nullable" PrivateAssets="all" />
2025-01-29 08:48:10 +00:00
<PackageReference Include="Roslynator.Analyzers" PrivateAssets="all" />
2024-04-03 19:38:56 +00:00
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="all" />
2023-03-16 00:44:48 +00:00
<Analyzer Include="$(MSBuildProjectDirectory)/../../References/BizHawk.Analyzer.dll" />
2023-11-22 04:01:43 +00:00
<GlobalAnalyzerConfigFiles Include="$(MSBuildProjectDirectory)/../../.global.editorconfig.ini" />
2023-03-16 00:44:48 +00:00
<AdditionalFiles Include="$(MSBuildProjectDirectory)/../../.stylecop.json" />
2021-01-17 23:26:51 +00:00
</ItemGroup>
2021-07-01 01:04:32 +00:00
<PropertyGroup Condition=" $(IsTargetingNetFramework) ">
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
</PropertyGroup>
2021-01-17 23:26:51 +00:00
<ItemGroup Condition=" $(IsTargetingNetFramework) ">
2024-02-12 22:09:22 +00:00
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" PrivateAssets="all" />
<PackageReference Include="System.Resources.Extensions" PrivateAssets="all" />
2020-09-22 10:48:13 +00:00
</ItemGroup>
2020-01-16 22:52:41 +00:00
</Project>