Microsoft.AspNetCore.App =>Ref in the platform manifest (#13129)

This commit is contained in:
Justin Kotalik 2019-08-15 08:48:06 -07:00 committed by Andrew Stanton-Nurse
parent f70eef0db1
commit 417cba2d50
2 changed files with 2 additions and 2 deletions

View File

@ -228,7 +228,7 @@ This package is an internal implementation of the .NET Core SDK and is not meant
<RepoTasks.GenerateSharedFrameworkDepsFile <RepoTasks.GenerateSharedFrameworkDepsFile
DepsFilePath="$(ProjectDepsFilePath)" DepsFilePath="$(ProjectDepsFilePath)"
TargetFramework="$(TargetFrameworkMoniker)" TargetFramework="$(TargetFrameworkMoniker)"
FrameworkName="$(SharedFxName)" FrameworkName="$(TargetingPackName)"
FrameworkVersion="$(SharedFxVersion)" FrameworkVersion="$(SharedFxVersion)"
References="@(_RuntimeReference)" References="@(_RuntimeReference)"
RuntimeIdentifier="$(RuntimeIdentifier)" RuntimeIdentifier="$(RuntimeIdentifier)"

View File

@ -101,7 +101,7 @@ namespace Microsoft.AspNetCore
{ {
var parts = line.Split('|'); var parts = line.Split('|');
Assert.Equal(4, parts.Length); Assert.Equal(4, parts.Length);
Assert.Equal("Microsoft.AspNetCore.App", parts[1]); Assert.Equal("Microsoft.AspNetCore.App.Ref", parts[1]);
if (parts[2].Length > 0) if (parts[2].Length > 0)
{ {
Assert.True(Version.TryParse(parts[2], out _), "Assembly version must be convertable to System.Version"); Assert.True(Version.TryParse(parts[2], out _), "Assembly version must be convertable to System.Version");