/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/RoslynAnalyzers/Tools/GenerateDocumentationAndConfigFilesForBrokenRuntime/Program.cs
17 строк
553 B
Joey Robichaud
Format whitespace and fix up diagnostics
15 мар 2025, 02:53
15 мар 2025, 02:53
4cf3717
Код
Авторство
О чём код?
// 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. using System.Threading.Tasks; namespace GenerateDocumentationAndConfigFilesForBrokenRuntime { public static class Program { public static Task<int> Main(string[] args) { // Delegate to the actual tool implementation return GenerateDocumentationAndConfigFiles.Program.Main(args); } } }