Do not trim refs
This commit is contained in:
parent
f665c28173
commit
8831bb4a8b
31 changed files with 455 additions and 108 deletions
|
|
@ -44,6 +44,7 @@ namespace Microsoft.Extensions.DependencyModel
|
|||
var resolvedPaths = compilationLibrary.ResolveReferencePaths();
|
||||
foreach (var resolvedPath in resolvedPaths)
|
||||
{
|
||||
Console.WriteLine($"Compilation {compilationLibrary.Name}:{Path.GetFileName(resolvedPath)}");
|
||||
if (!File.Exists(resolvedPath))
|
||||
{
|
||||
Error($"Compilataion library resolved to non existent path {resolvedPath}");
|
||||
|
|
@ -55,8 +56,10 @@ namespace Microsoft.Extensions.DependencyModel
|
|||
foreach (var runtimeLibrary in context.RuntimeLibraries)
|
||||
{
|
||||
CheckMetadata(runtimeLibrary);
|
||||
foreach (var assembly in runtimeLibrary.GetDefaultNativeAssets(context)) {}
|
||||
foreach (var native in runtimeLibrary.GetDefaultAssemblyNames(context)) {}
|
||||
foreach (var native in runtimeLibrary.GetDefaultNativeAssets(context)) {}
|
||||
foreach (var assembly in runtimeLibrary.GetDefaultAssemblyNames(context)) {
|
||||
Console.WriteLine($"Runtime {runtimeLibrary.Name}:{assembly.Name}");
|
||||
}
|
||||
}
|
||||
|
||||
foreach (var native in context.GetDefaultNativeAssets()) {}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,19 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "1.5.0-rc2-23931",
|
||||
"Microsoft.Extensions.DependencyModel": {
|
||||
"target": "project",
|
||||
"version": "1.0.0-*"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandardapp1.5": {
|
||||
"imports": "dnxcore50"
|
||||
"netstandard1.5": {
|
||||
"imports": "dnxcore50",
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "1.5.0-rc2-23931",
|
||||
}
|
||||
},
|
||||
"net451": {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue