/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Shared/ErrorPage/GeneratePage.ps1
15 строк
536 B
dotnet-maestro[bot]
[main] Source code updates from dotnet/dotnet (#65006)
15 янв 2026, 20:59
Не верифицирован
15 янв 2026, 20:59
8d95457
Код
Авторство
О чём код?
$RepoRoot = Resolve-Path "$PSScriptRoot\..\..\.." $ToolPath = Join-Path "$RepoRoot" "artifacts\bin\RazorPageGenerator\Debug\net11.0\dotnet-razorpagegenerator.exe" if (!(Test-Path "$ToolPath")) { throw "Unable to find razor page generator tool at $ToolPath" } & "$ToolPath" Microsoft.AspNetCore.Hosting.Views "$PSScriptRoot" Views/ $TargetPath = Join-Path "$PSScriptRoot" "ErrorPage.Designer.cs" if (Test-Path "$TargetPath") { Remove-Item "$TargetPath" } Move-Item "$PSScriptRoot\Views\ErrorPage.Designer.cs" "$PSScriptRoot"