Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Download nuget v3.5.0 from nuget.org #10188

Merged
merged 1 commit into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
bin
obj
out
csx
.vs
.vscode
.DS_Store
edge
Publish

Expand All @@ -11,16 +14,21 @@ Publish
*.Cache
msbuild.log
package-lock.json
.DS_Store
**/Properties/launchSettings.json
**/project.assets.json

/packages
/TestResults
tools/ExtensionsMetadataGenerator/packages
TestResults/

/tools/NuGet.exe
/node_modules
/.output
/buildoutput
/tools/ExtensionsMetadataGenerator/src/ExtensionsMetadataGenerator/runtimeassemblies.txt
/tools/ExtensionsMetadataGenerator/test/ExtensionsMetadataGeneratorTests/runtimeAssemblies.txt

src/WebJobs.Script.WebHost/Properties/launchSettings.json

# ignore generated grpc code from core branch
src/WebJobs.Script.Grpc/Messages
local.settings.json
*.binlog
pp.xml
BenchmarkDotNet.Artifacts/
3 changes: 2 additions & 1 deletion WebJobs.Script.proj
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@
</Target>

<Target Name="DownloadRuntimeNugetClient">
<!-- v3.5.0 is the current nuget.exe version deployed with functions v1. Keeping it at that version to minimize churn. -->
<Message Text="Downloading runtime NuGet client..." Importance="Normal" />
<DownloadNuGet OutputFileName="$(FunctionsSiteExtensionPath)\bin\tools\nuget.exe" MinimumVersion="3.3.0" DownloadUrl="https://azfunc.blob.core.windows.net/public/nuget.exe" />
<DownloadNuGet OutputFileName="$(FunctionsSiteExtensionPath)\bin\tools\nuget.exe" MinimumVersion="3.3.0" DownloadUrl="https://dist.nuget.org/win-x86-commandline/v3.5.0/nuget.exe" />
</Target>

<Target Name="PackageScriptHost" DependsOnTargets="Build;DownloadRuntimeNugetClient">
Expand Down
Loading