Skip to content

Commit 6721123

Browse files
authored
UniversalPackages: Fix setting default value for UniversalPackagesRootPath (#619)
1 parent 287ecc6 commit 6721123

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UniversalPackages/Sdk/Sdk.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<ArtifactsCredentialProviderPath Condition="'$(ArtifactsCredentialProviderPath)' == '' and !$([System.OperatingSystem]::IsWindows()) and Exists('$(HOME)/.nuget/plugins/netcore/CredentialProvider.Microsoft/CredentialProvider.Microsoft')">$(HOME)/.nuget/plugins/netcore/CredentialProvider.Microsoft/CredentialProvider.Microsoft</ArtifactsCredentialProviderPath>
3131

3232
<!-- Define a default root path for packages -->
33-
<UniversalPackagesRootPath Condition="'$(UniversalPackagesPathBase)' == ''">packages</UniversalPackagesRootPath>
33+
<UniversalPackagesRootPath Condition="'$(UniversalPackagesRootPath)' == ''">packages</UniversalPackagesRootPath>
3434

3535
<!-- Path to generate the json file to use for the batch download command -->
3636
<UniversalPackageListJsonPath Condition="'$(UniversalPackageListJsonPath)' == ''">$(BaseIntermediateOutputPath)\universal-packages.json</UniversalPackageListJsonPath>

0 commit comments

Comments
 (0)