11 lines
284 B
C#
11 lines
284 B
C#
namespace Matrix42.Extensions.Scaffolder.Core.Project
|
|
{
|
|
/// <summary>
|
|
/// Describes a single extra reference to put in the csproj.
|
|
/// </summary>
|
|
public sealed class ProjectReferenceDefinition
|
|
{
|
|
public string Include { get; set; }
|
|
public string HintPath { get; set; }
|
|
}
|
|
} |