Rename Microsoft.AspNetCore.App.PlatformManifest.txt to PlatformManifest.txt (#9180)

This commit is contained in:
Nate McMaster 2019-04-09 17:18:46 -07:00 committed by GitHub
parent 6545fc155b
commit d1c7e90b98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
<PropertyGroup> <PropertyGroup>
<!-- Shared between targeting pack and runtime build. --> <!-- Shared between targeting pack and runtime build. -->
<PlatformManifestFileName>Microsoft.AspNetCore.App.PlatformManifest.txt</PlatformManifestFileName> <PlatformManifestFileName>PlatformManifest.txt</PlatformManifestFileName>
<PlatformManifestOutputPath>$(ArtifactsObjDir)$(PlatformManifestFileName)</PlatformManifestOutputPath> <PlatformManifestOutputPath>$(ArtifactsObjDir)$(PlatformManifestFileName)</PlatformManifestOutputPath>
</PropertyGroup> </PropertyGroup>

View File

@ -27,7 +27,7 @@ namespace Microsoft.AspNetCore
[Fact] [Fact]
public void PlatformManifestListsAllFiles() public void PlatformManifestListsAllFiles()
{ {
var platformManifestPath = Path.Combine(_targetingPackRoot, "data", "Microsoft.AspNetCore.App.PlatformManifest.txt"); var platformManifestPath = Path.Combine(_targetingPackRoot, "data", "PlatformManifest.txt");
var expectedAssemblies = TestData.GetSharedFxDependencies() var expectedAssemblies = TestData.GetSharedFxDependencies()
.Split(';', StringSplitOptions.RemoveEmptyEntries) .Split(';', StringSplitOptions.RemoveEmptyEntries)
.ToHashSet(); .ToHashSet();