aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/Google.Protobuf.JsonDump/project.json
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2016-07-14 22:01:47 +0100
committerJon Skeet <jonskeet@google.com>2016-07-14 22:16:35 +0100
commitb5ce5251fd9450162f12fae93b35f31c5319a793 (patch)
treef14ee7aae7ae4959aea825360423e79d50d8d325 /csharp/src/Google.Protobuf.JsonDump/project.json
parent5e0de1ebee532dc2ff4ce88ec2d7bee90817825c (diff)
downloadprotobuf-b5ce5251fd9450162f12fae93b35f31c5319a793.tar.gz
protobuf-b5ce5251fd9450162f12fae93b35f31c5319a793.tar.bz2
protobuf-b5ce5251fd9450162f12fae93b35f31c5319a793.zip
Move to dotnet cli for building, and .NET Core (netstandard1.0) as target platform (#1727)
This also updates the version number to 3.0.0-beta4
Diffstat (limited to 'csharp/src/Google.Protobuf.JsonDump/project.json')
-rw-r--r--csharp/src/Google.Protobuf.JsonDump/project.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/csharp/src/Google.Protobuf.JsonDump/project.json b/csharp/src/Google.Protobuf.JsonDump/project.json
new file mode 100644
index 00000000..84b23c45
--- /dev/null
+++ b/csharp/src/Google.Protobuf.JsonDump/project.json
@@ -0,0 +1,19 @@
+{
+ "buildOptions": {
+ "debugType": "portable",
+ "emitEntryPoint": true
+ },
+ "dependencies": {
+ "Google.Protobuf": { "target": "project" }
+ },
+ "frameworks": {
+ "netcoreapp1.0": {
+ "dependencies": {
+ "Microsoft.NETCore.App": {
+ "type": "platform",
+ "version": "1.0.0"
+ }
+ }
+ }
+ }
+}