Browse Source

Set PackageProjectUrl (#61188)

* Set PackageProjectUrl

Avoid override by the VMR build.

* Update Directory.Build.props
Matt Mitchell 11 months ago
parent
commit
a182f3558f
1 changed files with 3 additions and 1 deletions
  1. 3 1
      Directory.Build.props

+ 3 - 1
Directory.Build.props

@@ -8,7 +8,9 @@
     <!-- $(RepoRoot) is normally set globally and Arcade overrides it to ensure a trailing slash. -->
     <RepoRoot Condition=" '$(RepoRoot)' == '' OR !HasTrailingSlash('$(RepoRoot)') ">$(MSBuildThisFileDirectory)</RepoRoot>
 
-    <RepositoryUrl>https://github.com/dotnet/aspnetcore</RepositoryUrl>
+    <DefaultRepositoryUrl>https://github.com/dotnet/aspnetcore</DefaultRepositoryUrl>
+    <RepositoryUrl>$(DefaultRepositoryUrl)</RepositoryUrl>
+    <PackageProjectUrl>$(DefaultRepositoryUrl)</PackageProjectUrl>
     <RepositoryType>git</RepositoryType>
   </PropertyGroup>