|
13 | 13 | <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
14 | 14 | </PropertyGroup> |
15 | 15 |
|
| 16 | + <!-- To be removed when stable .NET 8 version has been released. --> |
16 | 17 | <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> |
30 | | - <CoverletVersion>6.0.*</CoverletVersion> |
31 | | - <DateOnlyTimeOnlyVersion>2.1.*</DateOnlyTimeOnlyVersion> |
32 | | - <EntityFrameworkCoreVersion>7.0.*</EntityFrameworkCoreVersion> |
33 | | - <FluentAssertionsVersion>6.12.*</FluentAssertionsVersion> |
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> |
40 | | - <TestSdkVersion>17.7.*</TestSdkVersion> |
41 | | - <XunitVersion>2.5.*</XunitVersion> |
| 18 | + <NoWarn>$(NoWarn);NU5104</NoWarn> |
| 19 | + <SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage> |
42 | 20 | </PropertyGroup> |
43 | 21 |
|
44 | 22 | <ItemGroup> |
45 | | - <PackageReference Include="JetBrains.Annotations" Version="$(JetBrainsAnnotationsVersion)" PrivateAssets="All" /> |
46 | | - <PackageReference Include="CSharpGuidelinesAnalyzer" Version="$(CSharpGuidelinesAnalyzerVersion)" PrivateAssets="All" /> |
| 23 | + <PackageReference Include="JetBrains.Annotations" Version="2023.2.*" PrivateAssets="All" /> |
| 24 | + <PackageReference Include="CSharpGuidelinesAnalyzer" Version="3.8.*" PrivateAssets="All" /> |
47 | 25 | <AdditionalFiles Include="$(MSBuildThisFileDirectory)CSharpGuidelinesAnalyzer.config" Visible="False" /> |
48 | 26 | </ItemGroup> |
49 | 27 |
|
50 | 28 | <PropertyGroup> |
51 | 29 | <Nullable>enable</Nullable> |
| 30 | + <LangVersion>latest</LangVersion> |
52 | 31 | <ImplicitUsings>enable</ImplicitUsings> |
53 | 32 | <IsPackable>false</IsPackable> |
54 | 33 | <WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject> |
|
0 commit comments