Skip to content

Commit 3ca278c

Browse files
committed
add net6.0 framework target
1 parent d8868ee commit 3ca278c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Serilog sink that writes events to [Google Cloud Logging](https://cloud.google.com/logging/).
44

5-
Built for `netstandard2.0`, `net5.0`
5+
Built for `net6.0`, `net5.0`, `netstandard2.0`
66

77
Release notes here: [CHANGELOG.md](CHANGELOG.md)
88

src/Serilog.Sinks.GoogleCloudLogging.Test/Serilog.Sinks.GoogleCloudLogging.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<LangVersion>default</LangVersion>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

src/Serilog.Sinks.GoogleCloudLogging/Serilog.Sinks.GoogleCloudLogging.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<IncludeSymbols>true</IncludeSymbols>
1818
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1919
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
20-
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
20+
<TargetFrameworks>net6.0;net5.0;netstandard2.0</TargetFrameworks>
2121
<LangVersion>9</LangVersion>
2222
<Nullable>enable</Nullable>
2323
</PropertyGroup>

src/TestWeb/TestWeb.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<LangVersion>default</LangVersion>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

0 commit comments

Comments
 (0)