Change asset manifest filename to use osname

This commit is contained in:
Christopher Costa 2019-01-24 15:48:08 -08:00
parent 65ac3a997b
commit df6f0d65e6
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ Found an issue?
You can consult the [Documents Index for the CLI repo](https://github.com/dotnet/cli/blob/master/Documentation/README.md) to find out current issues, see workarounds, and to see how to file new issues.
This project has adopted the code of conduct defined by the [Contributor Covenant](http://contributor-covenant.org/) to clarify expected behavior in our community. For more information, see the [.NET Foundation Code of Conduct](http://www.dotnetfoundation.org/code-of-conduct).
# Build status
|All legs|

View file

@ -25,7 +25,7 @@
<PropertyGroup>
<!-- Because we may be building in a container, we should use an asset manifest file path
that exists in the container. Disambiguate the manifests via RID and architecture -->
<AssetManifestFileName>$(OS)-$(PlatformName)</AssetManifestFileName>
<AssetManifestFileName>$(OSName)-$(PlatformName)</AssetManifestFileName>
<AssetManifestFileName Condition="'$(Rid)' != ''">$(AssetManifestFileName)-$(Rid)</AssetManifestFileName>
<AssetManifestFileName Condition="'$(Architecture)' != ''">$(AssetManifestFileName)-$(Architecture)</AssetManifestFileName>
<ChecksumsAssetManifestFileName>$(AssetManifestFileName)-checksums</ChecksumsAssetManifestFileName>