Oops, fixed the asset name for the main asset
This commit is contained in:
parent
b09b00f8a5
commit
d4a8fa24db
1 changed files with 4 additions and 4 deletions
|
@ -184,14 +184,14 @@ namespace Microsoft.DotNet.ProjectModel.Compilation
|
||||||
|
|
||||||
foreach (var path in outputCalculator.GetBuildOutputs(_configuration))
|
foreach (var path in outputCalculator.GetBuildOutputs(_configuration))
|
||||||
{
|
{
|
||||||
if (Path.GetFileNameWithoutExtension(path) == project.Identity.Name)
|
var assetName = project.Identity.Name;
|
||||||
|
if (Path.GetFileNameWithoutExtension(path) != project.Identity.Name)
|
||||||
{
|
{
|
||||||
continue;
|
assetName += "/" + Path.GetExtension(path).Substring(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// We're going to call this asset
|
// We're going to call this asset
|
||||||
var extension = Path.GetExtension(path).Substring(1);
|
runtimeAssemblies.Add(new LibraryAsset(assetName, null, path));
|
||||||
runtimeAssemblies.Add(new LibraryAsset(project.Identity.Name + "/" + extension, null, path));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue