Skip to content

Commit 5637449

Browse files
committed
1 parent 2856d1b commit 5637449

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ dotnet restore
55

66
# Until # 65 is addressed build only core package. When available move to netstandard for all packages
77
for path in src/**/Serilog.Sinks.Splunk.csproj; do
8-
dotnet build -f netstandard1.1 -c Release ${path}
8+
dotnet build -f netstandard2.1 -c Release ${path}
99
dotnet build -f netstandard2.0 -c Release ${path}
1010
done
1111

1212
for path in test/*.Tests/*.csproj; do
13-
dotnet test -f netcoreapp2.0 -c Release ${path}
13+
dotnet test -f netcoreapp2.1 -c Release ${path}
1414
done
1515

16-
dotnet build -f netcoreapp2.0 -c Release sample/Sample/Sample.csproj
16+
dotnet build -f netcoreapp2.1 -c Release sample/Sample/Sample.csproj

test/Serilog.Sinks.Splunk.Tests/Serilog.Sinks.Splunk.Tests.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-
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
55
<AssemblyName>Serilog.Sinks.Splunk.Tests</AssemblyName>
66
<PackageId>Serilog.Sinks.Splunk.Tests</PackageId>
77
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>

0 commit comments

Comments
 (0)