34 lines
1.2 KiB
C#
34 lines
1.2 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using NuGet.Frameworks;
|
|
using NuGet.Packaging.Core;
|
|
using NuGet.Versioning;
|
|
|
|
namespace Microsoft.DotNet.ProjectModel.Graph
|
|
{
|
|
public class LockFileTargetLibrary
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public NuGetFramework TargetFramework { get; set; }
|
|
|
|
public NuGetVersion Version { get; set; }
|
|
|
|
public IList<PackageDependency> Dependencies { get; set; } = new List<PackageDependency>();
|
|
|
|
public ISet<string> FrameworkAssemblies { get; set; } = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
public IList<LockFileItem> RuntimeAssemblies { get; set; } = new List<LockFileItem>();
|
|
|
|
public IList<LockFileItem> CompileTimeAssemblies { get; set; } = new List<LockFileItem>();
|
|
|
|
public IList<LockFileItem> ResourceAssemblies { get; set; } = new List<LockFileItem>();
|
|
|
|
public IList<LockFileItem> NativeLibraries { get; set; } = new List<LockFileItem>();
|
|
}
|
|
}
|