Skip to content

Commit ce534dc

Browse files
committed
Run .NET Core 2.0 as test target on Travis, since that's the tooling version required to build
1 parent 2c16619 commit ce534dc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ for path in src/**/*.csproj; do
77
done
88

99
for path in test/*.Tests/*.csproj; do
10-
dotnet test -f netcoreapp1.0 -c Release ${path}
10+
dotnet test -f netcoreapp2.0 -c Release ${path}
1111
done

test/Serilog.Sinks.File.Tests/Serilog.Sinks.File.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
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
66
<AssemblyName>Serilog.Sinks.File.Tests</AssemblyName>
77
<AssemblyOriginatorKeyFile>../../assets/Serilog.snk</AssemblyOriginatorKeyFile>

0 commit comments

Comments
 (0)