Merge pull request #14102 from dotnet-maestro-bot/merge/release/6.0.4xx-to-main
[automated] Merge branch 'release/6.0.4xx' => 'main'
This commit is contained in:
commit
d44674b4db
4 changed files with 55 additions and 1 deletions
|
@ -176,6 +176,11 @@
|
||||||
Command="git submodule update --init --recursive --depth 1"
|
Command="git submodule update --init --recursive --depth 1"
|
||||||
WorkingDirectory="$(TarballRepoSourceDir)" />
|
WorkingDirectory="$(TarballRepoSourceDir)" />
|
||||||
|
|
||||||
|
<Exec
|
||||||
|
Command="git submodule foreach 'rm -rf %24%28git rev-parse --git-dir%29/objects ||:'"
|
||||||
|
WorkingDirectory="$(TarballRepoSourceDir)"
|
||||||
|
Condition="$(PreserveTarballGitFolders) != 'true'" />
|
||||||
|
|
||||||
<Exec
|
<Exec
|
||||||
Command="git config --file $(TarballRepoSourceDir)/.git/config --unset remote.origin.url"
|
Command="git config --file $(TarballRepoSourceDir)/.git/config --unset remote.origin.url"
|
||||||
WorkingDirectory="$(RepoRoot)"/>
|
WorkingDirectory="$(RepoRoot)"/>
|
||||||
|
@ -329,6 +334,8 @@
|
||||||
Overwrite="true" />
|
Overwrite="true" />
|
||||||
|
|
||||||
<MakeDir Directories="$(TarballRootDir)packages/prebuilt" />
|
<MakeDir Directories="$(TarballRootDir)packages/prebuilt" />
|
||||||
|
<!-- make sure this directory is persisted through source control, NuGet depends on it existing -->
|
||||||
|
<Exec Command="touch $(TarballRootDir)packages/prebuilt/_" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
|
|
@ -18,7 +18,8 @@ public class XmlDocTests : SmokeTests
|
||||||
/// Verifies every targeting pack assembly has a xml doc file.
|
/// Verifies every targeting pack assembly has a xml doc file.
|
||||||
/// There are exceptions which are specified in baselines/XmlDocIgnore.*.txt.
|
/// There are exceptions which are specified in baselines/XmlDocIgnore.*.txt.
|
||||||
/// </Summary>
|
/// </Summary>
|
||||||
[Fact]
|
// TODO: Re-enable with https://github.com/orgs/dotnet/projects/101/views/1?filterQuery=doc
|
||||||
|
//[Fact]
|
||||||
public void VerifyTargetingPacksHaveDoc()
|
public void VerifyTargetingPacksHaveDoc()
|
||||||
{
|
{
|
||||||
List<string> missingXmlDoc = new();
|
List<string> missingXmlDoc = new();
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Chris Rummel <crummel@microsoft.com>
|
||||||
|
Date: Wed, 22 Jun 2022 05:55:51 -0500
|
||||||
|
Subject: [PATCH] Enable work-tree and unsafe-paths to be able to apply in the
|
||||||
|
checked-in tarball.
|
||||||
|
|
||||||
|
---
|
||||||
|
eng/source-build/source-build.proj | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/eng/source-build/source-build.proj b/eng/source-build/source-build.proj
|
||||||
|
index cbdd6d8..a3e3d63 100644
|
||||||
|
--- a/eng/source-build/source-build.proj
|
||||||
|
+++ b/eng/source-build/source-build.proj
|
||||||
|
@@ -57,7 +57,7 @@
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<Exec
|
||||||
|
- Command="git --work-tree=$(ProjectRoot) apply --ignore-whitespace --whitespace=nowarn "%(SourceBuildPatchFile.FullPath)""
|
||||||
|
+ Command="git --work-tree=$(ProjectRoot) apply --ignore-whitespace --whitespace=nowarn --unsafe-paths "%(SourceBuildPatchFile.FullPath)""
|
||||||
|
WorkingDirectory="$(ProjectRoot)"
|
||||||
|
Condition="'@(SourceBuildPatchFile)' != ''" />
|
||||||
|
</Target>
|
|
@ -0,0 +1,23 @@
|
||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Chris Rummel <crummel@microsoft.com>
|
||||||
|
Date: Wed, 22 Jun 2022 05:59:17 -0500
|
||||||
|
Subject: [PATCH] Enable work-tree and unsafe-paths to be able to apply in the
|
||||||
|
checked-in tarball.
|
||||||
|
|
||||||
|
---
|
||||||
|
eng/SourceBuild.props | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/eng/SourceBuild.props b/eng/SourceBuild.props
|
||||||
|
index 82243ab..147de20 100644
|
||||||
|
--- a/eng/SourceBuild.props
|
||||||
|
+++ b/eng/SourceBuild.props
|
||||||
|
@@ -15,7 +15,7 @@
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<Exec
|
||||||
|
- Command="git apply --ignore-whitespace --whitespace=nowarn "%(SourceBuildPatchFile.FullPath)""
|
||||||
|
+ Command="git --work-tree=$(RepoRoot) apply --ignore-whitespace --whitespace=nowarn --unsafe-paths "%(SourceBuildPatchFile.FullPath)""
|
||||||
|
WorkingDirectory="$(RepoRoot)"
|
||||||
|
Condition="'@(SourceBuildPatchFile)' != ''" />
|
||||||
|
</Target>
|
Loading…
Reference in a new issue