Add reference assemblies and runtime targets support to dependency context builder.
This commit is contained in:
parent
7cc90d9ad1
commit
dd3c0f50db
24 changed files with 556 additions and 130 deletions
|
@ -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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue