Skip to content

Commit 417cba2

Browse files
jkotalikanalogrelay
authored andcommitted
Microsoft.AspNetCore.App =>Ref in the platform manifest (#13129)
1 parent f70eef0 commit 417cba2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Framework/src/Microsoft.AspNetCore.App.Runtime.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ This package is an internal implementation of the .NET Core SDK and is not meant
228228
<RepoTasks.GenerateSharedFrameworkDepsFile
229229
DepsFilePath="$(ProjectDepsFilePath)"
230230
TargetFramework="$(TargetFrameworkMoniker)"
231-
FrameworkName="$(SharedFxName)"
231+
FrameworkName="$(TargetingPackName)"
232232
FrameworkVersion="$(SharedFxVersion)"
233233
References="@(_RuntimeReference)"
234234
RuntimeIdentifier="$(RuntimeIdentifier)"

src/Framework/test/TargetingPackTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public void PlatformManifestListsAllFiles()
101101
{
102102
var parts = line.Split('|');
103103
Assert.Equal(4, parts.Length);
104-
Assert.Equal("Microsoft.AspNetCore.App", parts[1]);
104+
Assert.Equal("Microsoft.AspNetCore.App.Ref", parts[1]);
105105
if (parts[2].Length > 0)
106106
{
107107
Assert.True(Version.TryParse(parts[2], out _), "Assembly version must be convertable to System.Version");

0 commit comments

Comments
 (0)