2015-10-13 14:31:29 -07:00
|
|
|
// 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
|
|
|
|
{
|
2015-10-17 08:36:22 -07:00
|
|
|
public class TargetFrameworkInformation
|
2015-10-13 14:31:29 -07:00
|
|
|
{
|
|
|
|
public NuGetFramework FrameworkName { get; set; }
|
|
|
|
|
|
|
|
public IReadOnlyList<LibraryRange> Dependencies { get; set; }
|
|
|
|
|
2015-10-17 08:36:22 -07:00
|
|
|
public CompilerOptions CompilerOptions { get; set; }
|
|
|
|
|
2015-10-28 02:21:00 -07:00
|
|
|
public int Line { get; set; }
|
|
|
|
|
|
|
|
public int Column { get; set; }
|
|
|
|
|
2015-10-17 08:36:22 -07:00
|
|
|
// REVIEW: Wrapping, we might do this differntly
|
2015-10-13 14:31:29 -07:00
|
|
|
public string WrappedProject { get; set; }
|
|
|
|
|
|
|
|
public string AssemblyPath { get; set; }
|
|
|
|
|
|
|
|
public string PdbPath { get; set; }
|
|
|
|
}
|
|
|
|
}
|