From 37897cf0eae9f8c65239363cfdaed2a9a318be1e Mon Sep 17 00:00:00 2001 From: Ilja Nosik Date: Wed, 30 Aug 2017 13:13:27 +0200 Subject: [PATCH] Add .NET SDK (#1610) * Add .NET SDK manifest * Add deprecation note to dotnet.json * Update the .NET SDK to 2.0.0 --- dotnet-sdk.json | 15 +++++++++++++++ dotnet.json | 5 ++++- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 dotnet-sdk.json diff --git a/dotnet-sdk.json b/dotnet-sdk.json new file mode 100644 index 0000000000..6f5b2dcbed --- /dev/null +++ b/dotnet-sdk.json @@ -0,0 +1,15 @@ +{ + "version": "2.0.0", + "homepage": "https://www.microsoft.com/net/core#windows", + "architecture": { + "64bit": { + "url": "https://download.microsoft.com/download/1/B/4/1B4DE605-8378-47A5-B01B-2C79D6C55519/dotnet-sdk-2.0.0-win-x64.zip", + "hash": "541d4dd17023aff14a0aeb6505b200ccabffffc34ab2f629caeb994cedf8afd9" + }, + "32bit": { + "url": "https://download.microsoft.com/download/1/B/4/1B4DE605-8378-47A5-B01B-2C79D6C55519/dotnet-sdk-2.0.0-win-x86.zip", + "hash": "5eaa475a12843cfff9a97f4b7d3b205eb169fd372ddfc9ddde92225e9e4c1c7c" + } + }, + "bin": "dotnet.exe" +} diff --git a/dotnet.json b/dotnet.json index c1d3ba2f5c..119243cb77 100644 --- a/dotnet.json +++ b/dotnet.json @@ -11,5 +11,8 @@ "hash": "3a8d7316dd774d54e27a332c5d1e73d7813fecd10b670249f480ae917226e444" } }, - "bin": "dotnet.exe" + "bin": "dotnet.exe", + "notes": [ + "This app is deprecated. Install `dotnet-sdk` instead." + ] }