Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
753daae0
Commit
753daae0
authored
Mar 12, 2019
by
Jan Tattermusch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use netcoreapp2.1 for testing
parent
79c32b17
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
appveyor.bat
appveyor.bat
+1
-1
buildall.bat
csharp/buildall.bat
+1
-1
buildall.sh
csharp/buildall.sh
+3
-3
No files found.
appveyor.bat
View file @
753daae0
...
...
@@ -38,7 +38,7 @@ dotnet restore
dotnet build -c %configuration% || goto error
echo Testing C#
dotnet test -c %configuration% -f netcoreapp
1.0
Google.Protobuf.Test\Google.Protobuf.Test.csproj || goto error
dotnet test -c %configuration% -f netcoreapp
2.1
Google.Protobuf.Test\Google.Protobuf.Test.csproj || goto error
dotnet test -c %configuration% -f net451 Google.Protobuf.Test\Google.Protobuf.Test.csproj || goto error
goto :EOF
...
...
csharp/buildall.bat
View file @
753daae0
...
...
@@ -4,7 +4,7 @@ dotnet build src/Google.Protobuf.sln || goto :error
echo Running tests.
dotnet test -f netcoreapp
1.0
src/Google.Protobuf.Test/Google.Protobuf.Test.csproj || goto :error
dotnet test -f netcoreapp
2.1
src/Google.Protobuf.Test/Google.Protobuf.Test.csproj || goto :error
goto :EOF
...
...
csharp/buildall.sh
View file @
753daae0
...
...
@@ -10,8 +10,8 @@ dotnet restore $SRC/Google.Protobuf.sln
dotnet build
-c
$CONFIG
$SRC
/Google.Protobuf.sln
echo
Running tests.
# Only test netcoreapp
1.0
, which uses the .NET Core runtime.
# Only test netcoreapp
2.1
, which uses the .NET Core runtime.
# If we want to test the .NET 4.5 version separately, we could
# run Mono explicitly. However, we don't have any differences between
# the .NET 4.5 and netstandard
1.0
assemblies.
dotnet
test
-c
$CONFIG
-f
netcoreapp
1.0
$SRC
/Google.Protobuf.Test/Google.Protobuf.Test.csproj
# the .NET 4.5 and netstandard
2.1
assemblies.
dotnet
test
-c
$CONFIG
-f
netcoreapp
2.1
$SRC
/Google.Protobuf.Test/Google.Protobuf.Test.csproj
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment