Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAnkit Jain <radical@gmail.com>2018-02-10 00:20:46 +0300
committerMarek Safar <marek.safar@gmail.com>2018-02-14 20:59:11 +0300
commit8c90350d1144f01d3dce0292ab90da2f43b0e5ed (patch)
tree21988377cb68bf5e110ba383b296acb082944a77 /tools
parent47187bbc9b552f6ca5b2d80a2be6c7395b40da9e (diff)
Add denied assembly versions from previous ms extensions nugets
Extracted from Microsoft.NET.Build.Extensions 2.1.0-preview1-62414-02 # https://github.com/dotnet/cli/blob/501e11d928c21608999c934f0a7078570b688c6c/build/DependencyVersions.props 15.5.0-preview-20171027-2 # https://github.com/dotnet/cli/blob/ed916bb13e798a470855fb4f60acd3cabb2765fc/build/DependencyVersions.props 2.0.0-preview3-20170622-1 # https://github.com/dotnet/cli/blob/7c928a9f18f81001e586e5bf0411f9bfa92e30d4/build/DependencyVersions.props And also remove incorrect entries from earlier version 2.1.0-preview1-62516-03 , which were not committed to mono's msbuild. A future commit will sort and de-dedup the lists, but this one avoids removing any existing duplicates, to make review easier.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/nuget-hash-extractor/download.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/nuget-hash-extractor/download.sh b/tools/nuget-hash-extractor/download.sh
index 2ece7c0336a..2a78ac32191 100755
--- a/tools/nuget-hash-extractor/download.sh
+++ b/tools/nuget-hash-extractor/download.sh
@@ -52,7 +52,9 @@ curl -L https://www.nuget.org/api/v2/package/System.Threading.Overlapped/4.0.0 -
# Assemblies from Microsoft.NET.Build.Extensions are bundled with msbuild and they contain net4x assemblies, some of which
# are incompatible with mono
-MS_EXTN_VERSIONS="2.1.0-preview1-62414-02" # https://github.com/dotnet/cli/blob/501e11d928c21608999c934f0a7078570b688c6c/build/DependencyVersions.props
+MS_EXTN_VERSIONS="2.0.0-preview3-20170622-1" # https://github.com/dotnet/cli/blob/7c928a9f18f81001e586e5bf0411f9bfa92e30d4/build/DependencyVersions.props
+MS_EXTN_VERSIONS="$MS_EXTN_VERSIONS 15.5.0-preview-20171027-2" # https://github.com/dotnet/cli/blob/ed916bb13e798a470855fb4f60acd3cabb2765fc/build/DependencyVersions.props
+MS_EXTN_VERSIONS="$MS_EXTN_VERSIONS 2.1.0-preview1-62414-02" # https://github.com/dotnet/cli/blob/501e11d928c21608999c934f0a7078570b688c6c/build/DependencyVersions.props
for ver in $MS_EXTN_VERSIONS; do
curl -L https://dotnet.myget.org/F/cli-deps/api/v2/package/Microsoft.NET.Build.Extensions/${ver} -o nugets/microsoft.net.build.extensions.${ver}.nupkg