Skip to content

Commit b817a39

Browse files
authored
Don't explicitly import Arcade SDK in AfterSigning.targets (#22429)
* Don't explicitly import Arcade SDK in AfterSigning.targets * Only import sdk.targets * Set _SuppressSdkImports * Undo whitespace
1 parent eccd627 commit b817a39

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

eng/AfterSigning.targets

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
<Project>
2-
3-
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" Condition="'$(GenerateChecksums)' == 'true'" />
4-
52
<PropertyGroup Condition="'$(GenerateChecksums)' == 'true'">
63
<!-- The one use of ArtifactsDir in Publish.proj adds an additional slash, confusing itself. -->
74
<ArtifactsDir Condition=" HasTrailingSlash('$(ArtifactsDir)') ">$(ArtifactsDir.Substring(0, $([MSBuild]::Subtract($(ArtifactsDir.Length), 1))))</ArtifactsDir>
85
<!-- $(InstallersOutputPath) is not defined. Root Directory.Build.props is not imported. -->
96
<InstallersOutputPath>$(ArtifactsDir)\installers\</InstallersOutputPath>
7+
<_SuppressSdkImports>false</_SuppressSdkImports>
108
</PropertyGroup>
119

1210
<Target Name="PopulateGenerateChecksumItems"

0 commit comments

Comments
 (0)