|
1 | 1 | <!-- When altering this file, please include @dotnet/product-construction as a reviewer. --> |
2 | | - |
3 | 2 | <Project> |
4 | 3 |
|
5 | | - <PropertyGroup> |
6 | | - <GitHubRepositoryName>aspnetcore</GitHubRepositoryName> |
7 | | - <SourceBuildManagedOnly>true</SourceBuildManagedOnly> |
8 | | - </PropertyGroup> |
9 | | - |
10 | | - <!-- |
11 | | - Remove inner source .globalconfig file as both the inner and outer config files get loaded and cause a conflict. |
12 | | - Leaving the inner will cause all conflicting settings to be ignored. |
13 | | - https://learn.microsoft.com/dotnet/fundamentals/code-analysis/configuration-files#general-options. |
14 | | - This only needs to be done if there is an inner clone. |
15 | | - --> |
16 | | - <Target Name="RemoveInnerGlobalConfig" |
17 | | - DependsOnTargets="PrepareInnerSourceBuildRepoRoot" |
18 | | - BeforeTargets="RunInnerSourceBuildCommand" |
19 | | - Condition="'$(DotNetBuildOrchestrator)' != 'true'"> |
20 | | - |
21 | | - <Delete Files="$(InnerSourceBuildRepoRoot).globalconfig" /> |
22 | | - </Target> |
23 | | - |
24 | 4 | <!-- Build RepoTasks - this is normally triggered via the build script but the inner ArPow source-build is run via msbuild. |
25 | 5 | https://github.com/dotnet/source-build/issues/3807 --> |
26 | 6 | <Target Name="BuildRepoTasks" |
|
59 | 39 | Condition="'$(OS)' == 'Windows_NT'" /> |
60 | 40 | </Target> |
61 | 41 |
|
62 | | - <Target Name="GetAspnetcoreCategorizedIntermediateNupkgContents" |
63 | | - BeforeTargets="GetCategorizedIntermediateNupkgContents"> |
64 | | - <PropertyGroup> |
65 | | - <InstallersArtifactsDir>$(CurrentRepoSourceBuildArtifactsDir)\installers\$(Configuration)\</InstallersArtifactsDir> |
66 | | - </PropertyGroup> |
67 | | - |
68 | | - <ItemGroup> |
69 | | - <!-- |
70 | | - Add the internal installers artifacts required by dotnet/installer. |
71 | | - --> |
72 | | - <IntermediateNupkgArtifactFile Include="$(InstallersArtifactsDir)aspnetcore_base_runtime.version" /> |
73 | | - <IntermediateNupkgArtifactFile Include="$(InstallersArtifactsDir)aspnetcore-runtime-*.msi" /> |
74 | | - <IntermediateNupkgArtifactFile Include="$(InstallersArtifactsDir)aspnetcore-runtime-*.pkg" /> |
75 | | - </ItemGroup> |
76 | | - </Target> |
77 | | - |
78 | 42 | </Project> |
0 commit comments