Skip to content

Commit

Permalink
[.NET] Make the .NET Travis tests use netstandard1.3.
Browse files Browse the repository at this point in the history
Add -f netstandard1.3 to the dotnet build command used on Travis.

This has been necessary since PR antlr#2024, and the build has been silently failing
all this time.
  • Loading branch information
ewanmellor committed Nov 15, 2018
1 parent ba53e6b commit 2f91f64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis/run-tests-dotnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# when we call dotnet cli for restore and build, in order to speed up

dotnet restore ../runtime/CSharp/runtime/CSharp/Antlr4.Runtime/Antlr4.Runtime.dotnet.csproj
dotnet build -c Release ../runtime/CSharp/runtime/CSharp/Antlr4.Runtime/Antlr4.Runtime.dotnet.csproj
dotnet build -c Release -f netstandard1.3 ../runtime/CSharp/runtime/CSharp/Antlr4.Runtime/Antlr4.Runtime.dotnet.csproj

# call test

Expand Down

0 comments on commit 2f91f64

Please sign in to comment.