Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Side by Side Diff: third_party/protobuf/csharp/src/Google.Protobuf.Test/project.json

Issue 2599263002: third_party/protobuf: Update to HEAD (f52e188fe4) (Closed)
Patch Set: Address comments Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "buildOptions": {
3 "debugType": "portable",
4 "keyFile": "../../keys/Google.Protobuf.snk"
5 },
6
7 "configurations": {
8 "Debug": {
9 "buildOptions": {
10 "define": [ "DEBUG", "TRACE" ]
11 }
12 },
13 "Release": {
14 "buildOptions": {
15 "define": [ "RELEASE", "TRACE" ],
16 "optimize": true
17 }
18 }
19 },
20
21 "dependencies": {
22 "Google.Protobuf": { "target": "project" },
23 "NUnit": "3.4.0",
24 "dotnet-test-nunit": "3.4.0-alpha-2"
25 },
26
27 "testRunner": "nunit",
28
29 "frameworks": {
30 "netcoreapp1.0": {
31 "imports" : [ "dnxcore50", "netcoreapp1.0", "portable-net45+win8" ],
32 "buildOptions": {
33 "define": [ "PCL" ]
34 },
35 "dependencies": {
36 "Microsoft.NETCore.App": {
37 "version": "1.0.0",
38 "type": "platform"
39 },
40 "System.Console": "4.0.0"
41 }
42 }
43 }
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698