Skip to content

Commit 09aa8ed

Browse files
committed
Pin .NET Core SDK version to latest feature band
Pin the .NET Core SDK version to the `3.1.1xx` feature band. Do not allow prerelease versions. Also, since C# 7.3 is the default language version for `netstandard2.0`, it is not necessary to explicitly specify it.
1 parent 6152c32 commit 09aa8ed

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

global.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"sdk": {
3-
"version": "2.2.103"
3+
"allowPrerelease": false,
4+
"version": "3.1.100",
5+
"rollForward": "latestPatch"
46
}
5-
}
7+
}

src/Serilog.Extensions.Logging/Serilog.Extensions.Logging.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
<RepositoryType>git</RepositoryType>
2121
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
2222
<RootNamespace>Serilog</RootNamespace>
23-
<LangVersion>7.3</LangVersion>
2423
</PropertyGroup>
2524

2625
<ItemGroup>

0 commit comments

Comments
 (0)