/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Tools/CompilerGeneratorTools/Source/CSharpSyntaxGenerator/Model/Tree.cs
23 строки
694 B
Copilot
Remove superfluous `src/Tools/Source` directory level (#83484)
30 апр 2026, 06:54
Не верифицирован
30 апр 2026, 06:54
2933275
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Generic; using System.Xml.Serialization; namespace CSharpSyntaxGenerator { [XmlRoot] public class Tree { [XmlAttribute] public string Root; [XmlElement(ElementName = "Node", Type = typeof(Node))] [XmlElement(ElementName = "AbstractNode", Type = typeof(AbstractNode))] [XmlElement(ElementName = "PredefinedNode", Type = typeof(PredefinedNode))] public List<TreeType> Types; } }