-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable PVP flow for nuget.client (#16603)
- Loading branch information
1 parent
3c72e0a
commit 441c290
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
src/SourceBuild/patches/nuget-client/0002-Add-dependencies-for-PVP-flow.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Nikola Milosavljevic <[email protected]> | ||
Date: Wed, 7 Jun 2023 03:03:22 +0000 | ||
Subject: [PATCH] Add dependencies for PVP flow | ||
|
||
Backport: https://github.com/NuGet/NuGet.Client/pull/5207 | ||
--- | ||
eng/Version.Details.xml | 27 +++++++++++++++++++++++++++ | ||
1 file changed, 27 insertions(+) | ||
|
||
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml | ||
index ff6bc71b5..bbadad4c0 100644 | ||
--- a/eng/Version.Details.xml | ||
+++ b/eng/Version.Details.xml | ||
@@ -5,4 +5,31 @@ | ||
See https://github.com/dotnet/arcade/issues/2396 for details. | ||
See https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#details-file for schema. | ||
--> | ||
+ | ||
+ <!-- | ||
+ Following dependencies are required for PVP flow. | ||
+ PVP flow infra will automatically bump the version to the latest live one. | ||
+ --> | ||
+ <ProductDependencies> | ||
+ <Dependency Name="Microsoft.Build" Version="17.3.1"> | ||
+ <Uri>https://github.com/dotnet/msbuild</Uri> | ||
+ <Sha>80f618ad45d38475773fd1a6eaa059f118a0ad5a</Sha> | ||
+ </Dependency> | ||
+ <Dependency Name="Microsoft.Extensions.FileProviders.Abstractions" Version="6.0.0"> | ||
+ <Uri>https://github.com/dotnet/runtime</Uri> | ||
+ <Sha>8470979eb44c2218025515234d3e01138bd74afb</Sha> | ||
+ </Dependency> | ||
+ <Dependency Name="Microsoft.Extensions.FileSystemGlobbing" Version="6.0.0"> | ||
+ <Uri>https://github.com/dotnet/runtime</Uri> | ||
+ <Sha>8470979eb44c2218025515234d3e01138bd74afb</Sha> | ||
+ </Dependency> | ||
+ <Dependency Name="Microsoft.Web.Xdt" Version="3.0.0"> | ||
+ <Uri>https://github.com/aspnet/xdt</Uri> | ||
+ <Sha>d4d088b6a9c793525b1a27a119cb66ba4587bb39</Sha> | ||
+ </Dependency> | ||
+ <Dependency Name="System.ComponentModel.Composition" Version="4.5.0"> | ||
+ <Uri>https://github.com/dotnet/corefx</Uri> | ||
+ <Sha>30ab651fcb4354552bd4891619a0bdd81e0ebdbf</Sha> | ||
+ </Dependency> | ||
+ </ProductDependencies> | ||
</Dependencies> | ||
\ No newline at end of file |