You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
960 B
28 lines
960 B
2 years ago
|
using System;
|
||
|
|
||
|
namespace Microsoft.Unity.VisualStudio.Editor
|
||
|
{
|
||
|
internal class ProjectProperties
|
||
|
{
|
||
|
public string ProjectGuid { get; set; } = string.Empty;
|
||
|
public string LangVersion { get; set; } = "latest";
|
||
|
public string AssemblyName { get; set; } = string.Empty;
|
||
|
public string RootNamespace { get; set; } = string.Empty;
|
||
|
public string OutputPath { get; set; } = string.Empty;
|
||
|
|
||
|
// Analyzers
|
||
|
public string[] Analyzers { get; set; } = Array.Empty<string>();
|
||
|
public string RulesetPath { get; set; } = string.Empty;
|
||
|
|
||
|
// RSP alterable
|
||
|
public string[] Defines { get; set; } = Array.Empty<string>();
|
||
|
public bool Unsafe { get; set; } = false;
|
||
|
|
||
|
// VSTU Flavouring
|
||
|
public string FlavoringProjectType { get; set; } = string.Empty;
|
||
|
public string FlavoringBuildTarget { get; set; } = string.Empty;
|
||
|
public string FlavoringUnityVersion { get; set; } = string.Empty;
|
||
|
public string FlavoringPackageVersion { get; set; } = string.Empty;
|
||
|
}
|
||
|
}
|