|
1 | 1 | <Project>
|
2 |
| - <PropertyGroup> |
3 |
| - <TargetFrameworkName>net6.0</TargetFrameworkName> |
4 |
| - <AspNetVersion>6.0.*</AspNetVersion> |
5 |
| - <EFCoreVersion>7.0.*</EFCoreVersion> |
6 |
| - <EFCorePostgresVersion>7.0.*</EFCorePostgresVersion> |
7 |
| - <MicrosoftCodeAnalysisVersion>4.7.*</MicrosoftCodeAnalysisVersion> |
8 |
| - <HumanizerVersion>2.14.1</HumanizerVersion> |
9 |
| - <JsonApiDotNetCoreVersionPrefix>5.4.1</JsonApiDotNetCoreVersionPrefix> |
10 |
| - <CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)CodingGuidelines.ruleset</CodeAnalysisRuleSet> |
11 |
| - <WarningLevel>9999</WarningLevel> |
12 |
| - <Nullable>enable</Nullable> |
13 |
| - <ImplicitUsings>enable</ImplicitUsings> |
14 |
| - <IsPackable>false</IsPackable> |
15 |
| - <WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject> |
16 |
| - </PropertyGroup> |
17 |
| - |
18 |
| - <ItemGroup> |
19 |
| - <PackageReference Include="JetBrains.Annotations" Version="2023.2.0" PrivateAssets="All" /> |
20 |
| - <PackageReference Include="CSharpGuidelinesAnalyzer" Version="3.8.3" PrivateAssets="All" /> |
21 |
| - <AdditionalFiles Include="$(MSBuildThisFileDirectory)CSharpGuidelinesAnalyzer.config" Visible="False" /> |
22 |
| - </ItemGroup> |
23 |
| - |
24 |
| - <PropertyGroup Condition="'$(CI)' != ''"> |
25 |
| - <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 2 | + <PropertyGroup Condition="'$(Configuration)'=='Debug'"> |
| 3 | + <NoWarn>$(NoWarn);AV2210</NoWarn> |
26 | 4 | </PropertyGroup>
|
27 | 5 |
|
28 | 6 | <PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|
31 | 9 | <GenerateDocumentationFile>true</GenerateDocumentationFile>
|
32 | 10 | </PropertyGroup>
|
33 | 11 |
|
34 |
| - <PropertyGroup Condition="'$(Configuration)'=='Debug'"> |
35 |
| - <NoWarn>$(NoWarn);AV2210</NoWarn> |
| 12 | + <PropertyGroup Condition="'$(CI)' != ''"> |
| 13 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
36 | 14 | </PropertyGroup>
|
37 | 15 |
|
38 |
| - <!-- Test Project Dependencies --> |
39 | 16 | <PropertyGroup>
|
| 17 | + <!-- Published dependencies (only update on major version change) --> |
| 18 | + <TargetFrameworkName>net6.0</TargetFrameworkName> |
| 19 | + <CodeAnalysisFrozenVersion>4.1.0</CodeAnalysisFrozenVersion> |
| 20 | + <DemystifierFrozenVersion>0.4.1</DemystifierFrozenVersion> |
| 21 | + <EntityFrameworkCoreFrozenVersion>6.0.0</EntityFrameworkCoreFrozenVersion> |
| 22 | + <HumanizerFrozenVersion>2.14.1</HumanizerFrozenVersion> |
| 23 | + |
| 24 | + <!-- Non-published dependencies (these are safe to update, won't cause a breaking change) --> |
| 25 | + <AspNetCoreVersion>6.0.*</AspNetCoreVersion> |
| 26 | + <BenchmarkDotNetVersion>0.13.*</BenchmarkDotNetVersion> |
| 27 | + <BogusVersion>34.0.*</BogusVersion> |
| 28 | + <CSharpGuidelinesAnalyzerVersion>3.8.*</CSharpGuidelinesAnalyzerVersion> |
| 29 | + <CodeAnalysisVersion>4.7.*</CodeAnalysisVersion> |
40 | 30 | <CoverletVersion>6.0.*</CoverletVersion>
|
| 31 | + <DateOnlyTimeOnlyVersion>2.1.*</DateOnlyTimeOnlyVersion> |
| 32 | + <EntityFrameworkCoreVersion>7.0.*</EntityFrameworkCoreVersion> |
| 33 | + <FluentAssertionsVersion>6.12.*</FluentAssertionsVersion> |
41 | 34 | <GitHubActionsTestLoggerVersion>2.3.*</GitHubActionsTestLoggerVersion>
|
| 35 | + <InheritDocVersion>1.3.*</InheritDocVersion> |
| 36 | + <JetBrainsAnnotationsVersion>2023.2.*</JetBrainsAnnotationsVersion> |
| 37 | + <NpgsqlVersion>7.0.*</NpgsqlVersion> |
| 38 | + <SourceLinkVersion>1.1.*</SourceLinkVersion> |
| 39 | + <SystemTextJsonVersion>7.0.*</SystemTextJsonVersion> |
42 | 40 | <TestSdkVersion>17.7.*</TestSdkVersion>
|
| 41 | + <XunitVersion>2.5.*</XunitVersion> |
| 42 | + </PropertyGroup> |
| 43 | + |
| 44 | + <ItemGroup> |
| 45 | + <PackageReference Include="JetBrains.Annotations" Version="$(JetBrainsAnnotationsVersion)" PrivateAssets="All" /> |
| 46 | + <PackageReference Include="CSharpGuidelinesAnalyzer" Version="$(CSharpGuidelinesAnalyzerVersion)" PrivateAssets="All" /> |
| 47 | + <AdditionalFiles Include="$(MSBuildThisFileDirectory)CSharpGuidelinesAnalyzer.config" Visible="False" /> |
| 48 | + </ItemGroup> |
| 49 | + |
| 50 | + <PropertyGroup> |
| 51 | + <Nullable>enable</Nullable> |
| 52 | + <ImplicitUsings>enable</ImplicitUsings> |
| 53 | + <IsPackable>false</IsPackable> |
| 54 | + <WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject> |
| 55 | + <CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)CodingGuidelines.ruleset</CodeAnalysisRuleSet> |
| 56 | + <JsonApiDotNetCoreVersionPrefix>5.4.1</JsonApiDotNetCoreVersionPrefix> |
43 | 57 | </PropertyGroup>
|
44 | 58 | </Project>
|
0 commit comments