/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
eng/tools/GenerateFiles/GenerateFiles.csproj
41 строка
2 KB
William Godbe
Integrate Helix Job Monitor into all Helix-submitting pipelines (#68007)
04 авг 2026, 18:54
Не верифицирован
04 авг 2026, 18:54
28dd8a5
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <!-- Use SDK bundled version to avoid needing workarounds set up here. --> <TargetFramework>$(BundledNETCoreAppTargetFramework)</TargetFramework> <ExcludeFromSourceOnlyBuild>false</ExcludeFromSourceOnlyBuild> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.DotNet.Build.Tasks.Templating" PrivateAssets="All" Version="$(MicrosoftDotNetBuildTasksTemplatingVersion)" IsImplicitlyDefined="true" /> </ItemGroup> <!-- Update artifacts/bin/GenerateFiles/Directory.Build.* files. --> <Target Name="GenerateDirectoryBuildFiles"> <PropertyGroup> <_TemplateProperties> AspNetCorePatchVersion=$(AspNetCorePatchVersion); DefaultNetCoreTargetFramework=$(DefaultNetCoreTargetFramework); MicrosoftAspNetCoreAppRefVersion=$(TargetingPackVersion); MicrosoftAspNetCoreAppRuntimeVersion=$(SharedFxVersion); MicrosoftNETCoreAppRefVersion=$(MicrosoftNETCoreAppRefVersion); LibNetHostAppPackVersion=$(BundledNETCoreAppPackageVersion); SupportedRuntimeIdentifiers=$([MSBuild]::Escape($(SupportedRuntimeIdentifiers))); ArtifactsShippingPackagesDir=$(ArtifactsShippingPackagesDir) </_TemplateProperties> </PropertyGroup> <MakeDir Directories="$(BaseOutputPath)" /> <Message Importance="High" Text="$(MSBuildProjectName) -> $(BaseOutputPath)Directory.Build.props" /> <GenerateFileFromTemplate TemplateFile="$(MSBuildThisFileDirectory)Directory.Build.props.in" Properties="$(_TemplateProperties)" SkipUnchanged="true" OutputPath="$(BaseOutputPath)Directory.Build.props" /> <Message Importance="High" Text="$(MSBuildProjectName) -> $(BaseOutputPath)Directory.Build.targets" /> <GenerateFileFromTemplate TemplateFile="$(MSBuildThisFileDirectory)Directory.Build.targets.in" Properties="$(_TemplateProperties)" SkipUnchanged="true" OutputPath="$(BaseOutputPath)Directory.Build.targets" /> </Target> </Project>