Add .NET SDK (#1610)

* Add .NET SDK manifest

* Add deprecation note to dotnet.json

* Update the .NET SDK to 2.0.0
This commit is contained in:
Ilja Nosik 2017-08-30 13:13:27 +02:00 committed by Richard Kuhnt
parent 2639567382
commit 37897cf0ea
2 changed files with 19 additions and 1 deletions

15
dotnet-sdk.json Normal file
View File

@ -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"
}

View File

@ -11,5 +11,8 @@
"hash": "3a8d7316dd774d54e27a332c5d1e73d7813fecd10b670249f480ae917226e444" "hash": "3a8d7316dd774d54e27a332c5d1e73d7813fecd10b670249f480ae917226e444"
} }
}, },
"bin": "dotnet.exe" "bin": "dotnet.exe",
"notes": [
"This app is deprecated. Install `dotnet-sdk` instead."
]
} }