Skip to content
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