dotnet-installer/src/Microsoft.DotNet.ProjectModel/TargetFrameworkInformation.cs

29 lines
852 B
C#
Raw Normal View History

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic;
using Microsoft.Extensions.ProjectModel.Graph;
using NuGet.Frameworks;
namespace Microsoft.Extensions.ProjectModel
{
public class TargetFrameworkInformation
{
public NuGetFramework FrameworkName { get; set; }
public IReadOnlyList<LibraryRange> Dependencies { get; set; }
public CompilerOptions CompilerOptions { get; set; }
public int Line { get; set; }
public int Column { get; set; }
// REVIEW: Wrapping, we might do this differntly
public string WrappedProject { get; set; }
public string AssemblyPath { get; set; }
public string PdbPath { get; set; }
}
}