10000 Remove obsolete SB infra by ViktorHofer · Pull Request #61798 · dotnet/aspnetcore · GitHub
[go: up one dir, main page]

Skip to content

Remove obsolete SB infra #61798

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 0 additions & 36 deletions eng/DotNetBuild.props
Original file line number Diff line number Diff line change
@@ -1,26 +1,6 @@
<!-- When altering this file, please include @dotnet/product-construction as a reviewer. -->

<Project>

<PropertyGroup>
<GitHubRepositoryName>aspnetcore</GitHubRepositoryName>
<SourceBuildManagedOnly>true</SourceBuildManagedOnly>
</PropertyGroup>

<!--
Remove inner source .globalconfig file as both the inner and outer config files get loaded and cause a conflict.
Leaving the inner will cause all conflicting settings to be ignored.
https://learn.microsoft.com/dotnet/fundamentals/code-analysis/configuration-files#general-options.
This only needs to be done if there is an inner clone.
-->
<Target Name="RemoveInnerGlobalConfig"
DependsOnTargets="PrepareInnerSourceBuildRepoRoot"
BeforeTargets="RunInnerSourceBuildCommand"
Condition="'$(DotNetBuildOrchestrator)' != 'true'">

<Delete Files="$(InnerSourceBuildRepoRoot).globalconfig" />
</Target>

<!-- Build RepoTasks - this is normally triggered via the build script but the inner ArPow source-build is run via msbuild.
https://github.com/dotnet/source-build/issues/3807 -->
<Target Name="BuildRepoTasks"
Expand Down Expand Up @@ -59,20 +39,4 @@
Condition="'$(OS)' == 'Windows_NT'" />
</Target>

<Target Name="GetAspnetcoreCategorizedIntermediateNupkgContents"
BeforeTargets="GetCategorizedIntermediateNupkgContents">
<PropertyGroup>
<InstallersArtifactsDir>$(CurrentRepoSourceBuildArtifactsDir)\installers\$(Configuration)\</InstallersArtifactsDir>
</PropertyGroup>

<ItemGroup>
<!--
Add the internal installers artifacts required by dotnet/installer.
-->
<IntermediateNupkgArtifactFile Include="$(InstallersArtifactsDir)aspnetcore_base_runtime.version" />
<IntermediateNupkgArtifactFile Include="$(InstallersArtifactsDir)aspnetcore-runtime-*.msi" />
<IntermediateNupkgArtifactFile Include="$(InstallersArtifactsDir)aspnetcore-runtime-*.pkg" />
</ItemGroup>
</Target>

</Project>
Loading
0