Skip to content

Commit 1544ed2

Browse files
committed
Updated sample and test to netcoreapp2.0
1 parent 493e2ab commit 1544ed2

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

build.sh

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

66
for path in src/**/*.csproj; do
77
dotnet build -f netstandard1.1 -c Release ${path}
8+
dotnet build -f netstandard1.3 -c Release ${path}
89
done
910

1011
for path in test/*.Tests/*.csproj; do
11-
dotnet test -f netcoreapp1.0 -c Release ${path}
12+
dotnet test -f netcoreapp2.0 -c Release ${path}
1213
done
1314

14-
dotnet build -f netcoreapp1.0 -c Release sample/Sample/Sample.csproj
15+
dotnet build -f netcoreapp2.0 -c Release sample/Sample/Sample.csproj

sample/Sample/Sample.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp1.0</TargetFramework>
5+
<TargetFramework>netcoreapp2.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

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>net452;netcoreapp1.0</TargetFrameworks>
4+
<TargetFrameworks>net452;netcoreapp2.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)