[automated] Merge branch 'release/6.0.4xx' => 'release/7.0.1xx' (#16926)
This commit is contained in:
commit
96ddfa6596
5 changed files with 109 additions and 3 deletions
|
@ -134,7 +134,7 @@
|
||||||
<Target Name="CreateCreateSmokeTestPrereqsTarballIfPrereqsExist"
|
<Target Name="CreateCreateSmokeTestPrereqsTarballIfPrereqsExist"
|
||||||
Condition="'@(SmokeTestsPrereqs->Count())' != '0'">
|
Condition="'@(SmokeTestsPrereqs->Count())' != '0'">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<SmokeTestPrereqsTarballName>$(OutputPath)dotnet-smoke-test-prereqs.$(installerOutputPackageVersion).tar.gz</SmokeTestPrereqsTarballName>
|
<SmokeTestPrereqsTarballName>$(OutputPath)dotnet-smoke-test-prereqs.$(installerOutputPackageVersion).$(TargetRid).tar.gz</SmokeTestPrereqsTarballName>
|
||||||
<SmokeTestsPrereqPackagesDir>$(SmokeTestsArtifactsDir)prereq-packages/</SmokeTestsPrereqPackagesDir>
|
<SmokeTestsPrereqPackagesDir>$(SmokeTestsArtifactsDir)prereq-packages/</SmokeTestsPrereqPackagesDir>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
@ -190,7 +190,7 @@
|
||||||
<Target Name="CreatePrebuiltsTarballIfPrebuiltsExist"
|
<Target Name="CreatePrebuiltsTarballIfPrebuiltsExist"
|
||||||
Condition="'@(PrebuiltFile->Count())' != '0'">
|
Condition="'@(PrebuiltFile->Count())' != '0'">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TarballFilePath>$(OutputPath)$(SourceBuiltPrebuiltsTarballName).$(installerOutputPackageVersion).$(BuildArchitecture).tar.gz</TarballFilePath>
|
<TarballFilePath>$(OutputPath)$(SourceBuiltPrebuiltsTarballName).$(installerOutputPackageVersion).$(TargetRid).tar.gz</TarballFilePath>
|
||||||
<TarballWorkingDir>$(ResultingPrebuiltPackagesDir)</TarballWorkingDir>
|
<TarballWorkingDir>$(ResultingPrebuiltPackagesDir)</TarballWorkingDir>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
Directories="$(SourceBuildReferencePackagesDestination)extractArtifacts/" />
|
Directories="$(SourceBuildReferencePackagesDestination)extractArtifacts/" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<SourceBuiltTarballName>$(OutputPath)$(SourceBuiltArtifactsTarballName).$(installerOutputPackageVersion).tar.gz</SourceBuiltTarballName>
|
<SourceBuiltTarballName>$(OutputPath)$(SourceBuiltArtifactsTarballName).$(installerOutputPackageVersion).$(TargetRid).tar.gz</SourceBuiltTarballName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Exec Command="tar --numeric-owner --exclude='Microsoft.SourceBuild.Intermediate.*.nupkg' -czf $(SourceBuiltTarballName) *.nupkg *.props SourceBuildReferencePackages/"
|
<Exec Command="tar --numeric-owner --exclude='Microsoft.SourceBuild.Intermediate.*.nupkg' -czf $(SourceBuiltTarballName) *.nupkg *.props SourceBuildReferencePackages/"
|
||||||
|
|
|
@ -14,6 +14,8 @@ index ------------
|
||||||
./packs/Microsoft.AspNetCore.App.Ref/
|
./packs/Microsoft.AspNetCore.App.Ref/
|
||||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/
|
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/
|
||||||
@@ ------------ @@
|
@@ ------------ @@
|
||||||
|
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.IO.Pipelines.xml
|
||||||
|
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Security.Cryptography.Xml.dll
|
||||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Security.Cryptography.Xml.xml
|
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Security.Cryptography.Xml.xml
|
||||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Threading.RateLimiting.dll
|
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Threading.RateLimiting.dll
|
||||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Threading.RateLimiting.xml
|
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Threading.RateLimiting.xml
|
||||||
|
|
|
@ -0,0 +1,73 @@
|
||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Nikola Milosavljevic <nikolam@microsoft.com>
|
||||||
|
Date: Mon, 26 Jun 2023 23:46:46 +0000
|
||||||
|
Subject: [PATCH] Add explicit System.Text.Json dependency
|
||||||
|
|
||||||
|
Adding an excplicit System.Text.Json dependency to prevent transitive dependency to be picked up
|
||||||
|
from PSB, via Microsoft.Build package.
|
||||||
|
|
||||||
|
Backport: https://github.com/dotnet/format/pull/1887
|
||||||
|
---
|
||||||
|
Directory.Packages.props | 1 +
|
||||||
|
eng/Version.Details.xml | 4 ++++
|
||||||
|
eng/Versions.props | 2 ++
|
||||||
|
src/dotnet-format.csproj | 6 ++++++
|
||||||
|
4 files changed, 13 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/Directory.Packages.props b/Directory.Packages.props
|
||||||
|
index 6b628c22..c9f86593 100644
|
||||||
|
--- a/Directory.Packages.props
|
||||||
|
+++ b/Directory.Packages.props
|
||||||
|
@@ -36,5 +36,6 @@
|
||||||
|
<PackageVersion Include="NuGet.Versioning" Version="$(NuGetVersion)" />
|
||||||
|
<PackageVersion Include="System.CommandLine" Version="$(SystemCommandLineVersion)" />
|
||||||
|
<PackageVersion Include="System.CommandLine.Rendering" Version="$(SystemCommandLineRenderingVersion)" />
|
||||||
|
+ <PackageVersion Include="System.Text.Json" Version="$(SystemTextJsonVersion)" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
|
\ No newline at end of file
|
||||||
|
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
|
||||||
|
index cdfa5f5e..86f02b44 100644
|
||||||
|
--- a/eng/Version.Details.xml
|
||||||
|
+++ b/eng/Version.Details.xml
|
||||||
|
@@ -13,6 +13,10 @@
|
||||||
|
<Uri>https://github.com/dotnet/command-line-api</Uri>
|
||||||
|
<Sha>e5861a73ad3f08c820319b56b302387a8832ed59</Sha>
|
||||||
|
</Dependency>
|
||||||
|
+ <Dependency Name="System.Text.Json" Version="6.0.8">
|
||||||
|
+ <Uri>https://github.com/dotnet/runtime</Uri>
|
||||||
|
+ <Sha>3241df7f2b0f3e2dada8d07229723c79fdbe4991</Sha>
|
||||||
|
+ </Dependency>
|
||||||
|
</ProductDependencies>
|
||||||
|
<ToolsetDependencies>
|
||||||
|
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.22466.3">
|
||||||
|
diff --git a/eng/Versions.props b/eng/Versions.props
|
||||||
|
index 27582078..bccaf176 100644
|
||||||
|
--- a/eng/Versions.props
|
||||||
|
+++ b/eng/Versions.props
|
||||||
|
@@ -20,6 +20,8 @@
|
||||||
|
<!-- Dependencies from https://github.com/dotnet/command-line-api -->
|
||||||
|
<SystemCommandLineVersion>2.0.0-beta4.22430.1</SystemCommandLineVersion>
|
||||||
|
<SystemCommandLineRenderingVersion>0.4.0-alpha.22430.1</SystemCommandLineRenderingVersion>
|
||||||
|
+ <!-- Dependencies from https://github.com/dotnet/runtime -->
|
||||||
|
+ <SystemTextJsonVersion>6.0.8</SystemTextJsonVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<!--
|
||||||
|
Other Dependency versions
|
||||||
|
diff --git a/src/dotnet-format.csproj b/src/dotnet-format.csproj
|
||||||
|
index 5f691e6e..d812f06b 100644
|
||||||
|
--- a/src/dotnet-format.csproj
|
||||||
|
+++ b/src/dotnet-format.csproj
|
||||||
|
@@ -54,6 +54,12 @@
|
||||||
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Logging" />
|
||||||
|
+
|
||||||
|
+ <!--
|
||||||
|
+ Explicit System.Text.Json package reference is required for source-build to pick up the live package.
|
||||||
|
+ Avoids picking up an old version via transitive dependency from Microsoft.Build or Microsoft.CodeAnalysis.Workspaces.MSBuild.
|
||||||
|
+ -->
|
||||||
|
+ <PackageReference Include="System.Text.Json" Condition=" '$(DotnetBuildFromSource)' == 'true'" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
|
@ -0,0 +1,31 @@
|
||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Nikola Milosavljevic <nikolam@microsoft.com>
|
||||||
|
Date: Mon, 26 Jun 2023 23:02:20 +0000
|
||||||
|
Subject: [PATCH] Add explicit System.Text.Json dependency
|
||||||
|
|
||||||
|
Adding an excplicit System.Text.Json dependency to prevent transitive dependency to be picked up
|
||||||
|
from PSB, via Microsoft.Build package.
|
||||||
|
|
||||||
|
Backport: https://github.com/dotnet/sdk/pull/33618
|
||||||
|
---
|
||||||
|
src/BuiltInTools/dotnet-watch/dotnet-watch.csproj | 7 +++++++
|
||||||
|
1 file changed, 7 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/BuiltInTools/dotnet-watch/dotnet-watch.csproj b/src/BuiltInTools/dotnet-watch/dotnet-watch.csproj
|
||||||
|
index 065f750f72..13d2c1ed99 100644
|
||||||
|
--- a/src/BuiltInTools/dotnet-watch/dotnet-watch.csproj
|
||||||
|
+++ b/src/BuiltInTools/dotnet-watch/dotnet-watch.csproj
|
||||||
|
@@ -23,6 +23,13 @@
|
||||||
|
<PackageReference Include="Microsoft.Build.Locator" Version="$(MicrosoftBuildLocatorPackageVersion)" />
|
||||||
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="$(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion)" />
|
||||||
|
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="$(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion)" />
|
||||||
|
+
|
||||||
|
+ <!--
|
||||||
|
+ Explicit System.Text.Json package reference is required for source-build to pick up the live package.
|
||||||
|
+ Avoids picking up an old version via transitive dependency from Microsoft.Build or Microsoft.CodeAnalysis.Workspaces.MSBuild.
|
||||||
|
+ -->
|
||||||
|
+ <PackageReference Include="System.Text.Json" Version="$(SystemTextJsonVersion)" Condition="'$(DotnetBuildFromSource)' == 'true'" />
|
||||||
|
+
|
||||||
|
<Compile Include="$(RepoRoot)src\Common\PathUtilities.cs" LinkBase="Common" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
Loading…
Reference in a new issue