|
1 | 1 | <Project>
|
2 |
| - <PropertyGroup> |
3 |
| - <LangVersion>latest</LangVersion> |
| 2 | + <PropertyGroup> |
| 3 | + <LangVersion>latest</LangVersion> |
4 | 4 |
|
5 |
| - <Nullable>enable</Nullable> |
6 |
| - <WarningsAsErrors>$(WarningsAsErrors);nullable;</WarningsAsErrors> |
| 5 | + <Nullable>enable</Nullable> |
| 6 | + <WarningsAsErrors>$(WarningsAsErrors);nullable;</WarningsAsErrors> |
7 | 7 |
|
8 |
| - <ImplicitUsings>enable</ImplicitUsings> |
| 8 | + <ImplicitUsings>enable</ImplicitUsings> |
9 | 9 |
|
10 |
| - <CheckEolTargetFramework>false</CheckEolTargetFramework> |
| 10 | + <CheckEolTargetFramework>false</CheckEolTargetFramework> |
11 | 11 |
|
12 |
| - <AnalysisLevel>latest-all</AnalysisLevel> |
13 |
| - <EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> |
| 12 | + <AnalysisLevel>latest-all</AnalysisLevel> |
| 13 | + <EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> |
14 | 14 |
|
15 |
| - <PolySharpIncludeRuntimeSupportedAttributes>true</PolySharpIncludeRuntimeSupportedAttributes> |
| 15 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 16 | + </PropertyGroup> |
16 | 17 |
|
17 |
| - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
18 |
| - </PropertyGroup> |
| 18 | + <ItemGroup> |
| 19 | + <PackageReference Include="Meziantou.Analyzer" PrivateAssets="All" /> |
| 20 | + <PackageReference Include="Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers" PrivateAssets="All" /> |
| 21 | + <PackageReference Include="PolySharp" PrivateAssets="All" /> |
| 22 | + </ItemGroup> |
19 | 23 |
|
20 |
| - <ItemGroup> |
21 |
| - <PackageReference Include="Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers" PrivateAssets="All" /> |
22 |
| - <PackageReference Include="PolySharp" PrivateAssets="All" /> |
23 |
| - </ItemGroup> |
| 24 | + <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
| 25 | + <!-- Don't block development work; but block CI if dev work isn't complete. --> |
| 26 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
24 | 27 |
|
25 |
| - <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
26 |
| - <!-- Don't block development work; but block CI if dev work isn't complete. --> |
27 |
| - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
28 |
| - |
29 |
| - <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
30 |
| - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
31 |
| - <CollectCoverage>true</CollectCoverage> |
32 |
| - <CoverletOutputFormat>opencover</CoverletOutputFormat> |
33 |
| - </PropertyGroup> |
| 28 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 29 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 30 | + <CollectCoverage>true</CollectCoverage> |
| 31 | + <CoverletOutputFormat>opencover</CoverletOutputFormat> |
| 32 | + </PropertyGroup> |
34 | 33 | </Project>
|
0 commit comments