/
TON618OFF
/
Unity-Project-RTU
Обзор
Документация
Войти
/
TON618OFF
/
Unity-Project-RTU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Library/PackageCache/com.unity.ide.visualstudio@2.0.22/Editor/ProjectGeneration/ProjectProperties.cs
30 строк
1 KB
TON618OFF
release
03 окт 2024, 22:20
03 окт 2024, 22:20
7c70e9f
Код
Авторство
О чём код?
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; public string AnalyzerConfigPath { get; set; } = string.Empty; // Source generators public string[] AdditionalFilePaths { get; set; } = Array.Empty<string>(); // 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; } }