Skip to content

Commit 073df33

Browse files
committed
Changed to target netstandard 1.1. on travis
1 parent c814030 commit 073df33

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ matrix:
55
- os: linux # Ubuntu 14.04
66
dist: trusty
77
sudo: required
8-
dotnet: 1.0.1
8+
dotnet: 1.0.4
99

1010
script:
1111
- ./build.sh

Build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ foreach ($test in ls test/*.Tests) {
4141
Pop-Location
4242
}
4343

44-
foreach ($test in ls test/*.PerformanceTests) {
44+
foreach ($test in ls sample/Sample) {
4545
Push-Location $test
4646

4747
echo "build: Building performance test project in $test"

build.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ dotnet --info
1515
dotnet restore
1616

1717
for path in src/**/*.csproj; do
18-
dotnet build -f netstandard1.0 -c Release ${path}
19-
dotnet build -f netstandard1.3 -c Release ${path}
18+
dotnet build -f netstandard1.1 -c Release ${path}
2019
done
2120

2221
for path in test/*.Tests/*.csproj; do

test/Serilog.Sinks.Splunk.Tests/Serilog.Sinks.Splunk.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-preview-20170106-08" />
18-
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-beta5-build1225" />
19-
<PackageReference Include="xunit" Version="2.2.0-beta5-build3474" />
20-
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
17+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
18+
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
19+
<PackageReference Include="xunit" Version="2.2.0" />
20+
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
2121
</ItemGroup>
2222

2323
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">

0 commit comments

Comments
 (0)