From 3f10908ad0293947f5db0845bd6d0a59da7107b7 Mon Sep 17 00:00:00 2001 From: Doug Bunting <6431421+dougbu@users.noreply.github.com> Date: Tue, 8 Nov 2022 18:04:53 -0800 Subject: [PATCH] [release/3.1] nit: Update `$(RepositoryUrl)` (#44891) - this shows up in all package .nuspec files - `<repository type="git" url="$repositoryUrl$" commit="$repositoryCommit$" />` - also part of an `[AssemblyMetadataAttribute]` value (`SourceCommitUrl`) - bit confusing though redirects to our new location **do** work --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 7d0e04d1625..20cc154f854 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,7 +1,7 @@ <Project> <PropertyGroup> <RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot> - <RepositoryUrl>https://github.com/aspnet/AspNetCore</RepositoryUrl> + <RepositoryUrl>https://github.com/dotnet/aspnetcore</RepositoryUrl> <RepositoryType>git</RepositoryType> </PropertyGroup> -- GitLab