|
1 | 1 | <Project> |
2 | | - <PropertyGroup Condition="'$(Configuration)'=='Debug'"> |
| 2 | + <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> |
3 | 3 | <NoWarn>$(NoWarn);AV2210</NoWarn> |
4 | 4 | </PropertyGroup> |
5 | 5 |
|
6 | | - <PropertyGroup Condition="'$(Configuration)'=='Release'"> |
| 6 | + <PropertyGroup Condition="'$(Configuration)' == 'Release'"> |
7 | 7 | <NoWarn>$(NoWarn);1591</NoWarn> |
8 | 8 | <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
9 | 9 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
13 | 13 | <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
14 | 14 | </PropertyGroup> |
15 | 15 |
|
16 | | - <PropertyGroup> |
17 | | - <!-- Published dependencies (only update on major version change) --> |
18 | | - <TargetFrameworkName>net6.0</TargetFrameworkName> |
19 | | - <JsonApiDotNetCoreFrozenVersion>5.4.0</JsonApiDotNetCoreFrozenVersion> |
20 | | - <MongoDBDriverFrozenVersion>2.20.0</MongoDBDriverFrozenVersion> |
21 | | - |
22 | | - <CodeAnalysisFrozenVersion>4.1.0</CodeAnalysisFrozenVersion> |
23 | | - |
24 | | - <!-- Non-published dependencies (these are safe to update, won't cause a breaking change) --> |
25 | | - <AspNetCoreVersion>6.0.*</AspNetCoreVersion> |
26 | | - <BogusVersion>34.0.*</BogusVersion> |
27 | | - <CSharpGuidelinesAnalyzerVersion>3.8.*</CSharpGuidelinesAnalyzerVersion> |
28 | | - <CoverletVersion>6.0.*</CoverletVersion> |
29 | | - <EphemeralMongoVersion>1.1.*</EphemeralMongoVersion> |
30 | | - <FluentAssertionsVersion>6.12.*</FluentAssertionsVersion> |
31 | | - <GitHubActionsTestLoggerVersion>2.3.*</GitHubActionsTestLoggerVersion> |
32 | | - <InheritDocVersion>1.3.*</InheritDocVersion> |
33 | | - <JetBrainsAnnotationsVersion>2023.3.*</JetBrainsAnnotationsVersion> |
34 | | - <MongoDBDriverVersion>2.21.*</MongoDBDriverVersion> |
35 | | - <SourceLinkVersion>1.1.*</SourceLinkVersion> |
36 | | - <TestSdkVersion>17.8.*</TestSdkVersion> |
37 | | - <XunitVersion>2.5.*</XunitVersion> |
38 | | - </PropertyGroup> |
39 | | - |
40 | 16 | <ItemGroup> |
41 | | - <PackageReference Include="JetBrains.Annotations" Version="$(JetBrainsAnnotationsVersion)" PrivateAssets="All" /> |
42 | | - <PackageReference Include="CSharpGuidelinesAnalyzer" Version="$(CSharpGuidelinesAnalyzerVersion)" PrivateAssets="All" /> |
| 17 | + <PackageReference Include="JetBrains.Annotations" Version="2023.3.*" PrivateAssets="All" /> |
| 18 | + <PackageReference Include="CSharpGuidelinesAnalyzer" Version="3.8.*" PrivateAssets="All" /> |
43 | 19 | <AdditionalFiles Include="$(MSBuildThisFileDirectory)CSharpGuidelinesAnalyzer.config" Visible="False" /> |
44 | 20 | </ItemGroup> |
45 | 21 |
|
46 | 22 | <PropertyGroup> |
47 | 23 | <Nullable>enable</Nullable> |
| 24 | + <LangVersion>latest</LangVersion> |
48 | 25 | <ImplicitUsings>enable</ImplicitUsings> |
49 | 26 | <IsPackable>false</IsPackable> |
50 | 27 | <WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject> |
51 | 28 | <CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)CodingGuidelines.ruleset</CodeAnalysisRuleSet> |
52 | | - <JsonApiDotNetCoreMongoDbVersionPrefix>5.4.1</JsonApiDotNetCoreMongoDbVersionPrefix> |
| 29 | + <RunSettingsFilePath>$(MSBuildThisFileDirectory)tests.runsettings</RunSettingsFilePath> |
| 30 | + <JsonApiDotNetCoreMongoDbVersionPrefix>5.5.0</JsonApiDotNetCoreMongoDbVersionPrefix> |
53 | 31 | </PropertyGroup> |
54 | 32 | </Project> |
0 commit comments