Add reference assemblies and runtime targets support to dependency context builder.

This commit is contained in:
Pavel Krymets 2016-03-07 10:51:40 -08:00
parent 7cc90d9ad1
commit dd3c0f50db
24 changed files with 556 additions and 130 deletions

View file

@ -0,0 +1,21 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Microsoft.DotNet.ProjectModel.Graph
{
public class LockFileRuntimeTarget
{
public LockFileRuntimeTarget(string path, string runtime, string assetType)
{
Path = path;
Runtime = runtime;
AssetType = assetType;
}
public string Path { get; }
public string Runtime { get; }
public string AssetType { get; }
}
}