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
diff options
context:
space:
mode:
authorAnkit Jain <radical@gmail.com>2018-02-07 09:54:20 +0300
committerMarek Safar <marek.safar@gmail.com>2018-02-09 19:28:48 +0300
commit43617b0123a57d45c8b9218d258df50ebe1299b9 (patch)
treea39853f6074ba96645306d9983d6d962a63c3a61 /tools/nuget-hash-extractor
parent4cb78844774f4fa28e553edaaf488300aeed3c68 (diff)
nuget-hash-extractor: Add msbuild extensions nuget to list of nugets to
.. process. Version from: https://github.com/dotnet/cli/blob/501e11d928c21608999c934f0a7078570b688c6c/build/DependencyVersions.props ``` <MicrosoftNETSdkPackageVersion>2.1.0-preview1-62414-02</MicrosoftNETSdkPackageVersion> <MicrosoftNETBuildExtensionsPackageVersion>$(MicrosoftNETSdkPackageVersion)</MicrosoftNETBuildExtensionsPackageVersion> ``` Also, update the list in the runtime and deniedAssembliesList.txt installed for use by msbuild.
Diffstat (limited to 'tools/nuget-hash-extractor')
-rwxr-xr-xtools/nuget-hash-extractor/download.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/nuget-hash-extractor/download.sh b/tools/nuget-hash-extractor/download.sh
index 43415609b86..2ece7c0336a 100755
--- a/tools/nuget-hash-extractor/download.sh
+++ b/tools/nuget-hash-extractor/download.sh
@@ -49,4 +49,13 @@ curl -L https://www.nuget.org/api/v2/package/System.Threading.Overlapped/4.3.0 -
curl -L https://www.nuget.org/api/v2/package/System.Threading.Overlapped/4.0.1 -o nugets/system.threading.overlapped.4.0.1.nupkg
curl -L https://www.nuget.org/api/v2/package/System.Threading.Overlapped/4.0.0 -o nugets/system.threading.overlapped.4.0.0.nupkg
+# 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
+
+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
+done
+
touch .download_stamp_file