Skip to content

Commit e10d5bb

Browse files
committed
Move helix.proj output into artifacts/bin/
1 parent e1cc9af commit e10d5bb

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

eng/helix/helix.proj

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<Import Project="..\targets\Helix.Common.props" />
1212
<Import Project="..\Build.props" />
1313
<Import Project="..\Versions.props" />
14-
14+
1515
<!-- Microsoft.DotNet.Helix.Sdk.MultiQueue.targets splits $(HelixTargetQueues) into @(HelixTargetQueue) items. -->
1616
<ItemGroup Condition=" '$(HelixTargetQueues)' == '' ">
1717
<HelixTargetQueue Condition="'$(_UseHelixOpenQueues)' == 'true'" Include="@(HelixAvailableTargetQueue)" />
@@ -26,11 +26,11 @@
2626
<HelixAccessToken Condition="'$(_UseHelixOpenQueues)' != 'true'">$(HelixApiAccessToken)</HelixAccessToken>
2727
<IncludeDotNetCli>true</IncludeDotNetCli>
2828
<DotNetCliPackageType>sdk</DotNetCliPackageType>
29-
<DotNetCliVersion>$(NETCoreSdkVersion)</DotNetCliVersion>
29+
<DotNetCliVersion>$(NETCoreSdkVersion)</DotNetCliVersion>
3030
<DotNetCliChannel>Current</DotNetCliChannel>
3131

32-
<!-- Copied from Microsoft.NET.DefaultOutputPaths.targets in the .NET SDK. The Helix SDK contains nothing similar. -->
33-
<BaseOutputPath Condition="'$(BaseOutputPath)' == ''">bin\</BaseOutputPath>
32+
<!-- Copied from ProjectLayout.props in the Arcade SDK. The Helix SDK contains nothing similar. -->
33+
<BaseOutputPath Condition="'$(BaseOutputPath)' == ''">$(RepoRoot)artifacts\bin\$(MSBuildProjectName)\</BaseOutputPath>
3434
<OutputPath Condition="'$(OutputPath)' == '' and '$(PlatformName)' == 'AnyCPU'">$(BaseOutputPath)$(Configuration)\</OutputPath>
3535
<OutputPath Condition="'$(OutputPath)' == '' and '$(PlatformName)' != 'AnyCPU'">$(BaseOutputPath)$(PlatformName)\$(Configuration)\</OutputPath>
3636
</PropertyGroup>
@@ -44,7 +44,7 @@
4444
<PackageType>runtime</PackageType>
4545
</AdditionalDotNetPackage>
4646
</ItemGroup>
47-
47+
4848
<PropertyGroup Condition=" '$(ContinuousIntegrationBuild)' == 'true' ">
4949
<HelixType>ci</HelixType>
5050
<!-- Creator is not valid for internal queues -->
@@ -86,10 +86,10 @@
8686

8787
<PropertyGroup>
8888
<SharedFxVersion>@(_ResolvedProductVersionInfo->'%(PackageVersion)')</SharedFxVersion>
89-
</PropertyGroup>
90-
89+
</PropertyGroup>
90+
9191
<Unzip Condition="Exists('$(RepoRoot)artifacts\packages\$(Configuration)\Shipping\Microsoft.AspNetCore.App.Runtime.$(TargetRuntimeIdentifier).$(SharedFxVersion).nupkg')"
92-
SourceFiles="$(RepoRoot)artifacts\packages\$(Configuration)\Shipping\Microsoft.AspNetCore.App.Runtime.$(TargetRuntimeIdentifier).$(SharedFxVersion).nupkg"
92+
SourceFiles="$(RepoRoot)artifacts\packages\$(Configuration)\Shipping\Microsoft.AspNetCore.App.Runtime.$(TargetRuntimeIdentifier).$(SharedFxVersion).nupkg"
9393
DestinationFolder="$(OutputPath)\AspNetCoreAppRuntimeHelixRaw" />
9494
<ItemGroup>
9595
<_appRuntimeFiles Include="$(OutputPath)\AspNetCoreAppRuntimeHelixRaw\**\*.txt" />
@@ -98,18 +98,18 @@
9898
<_appRuntimeFiles Include="$(OutputPath)\AspNetCoreAppRuntimeHelixRaw\**\*.xml" />
9999
</ItemGroup>
100100
<Copy SourceFiles="@(_appRuntimeFiles)" DestinationFolder="$(OutputPath)\AspNetCoreAppRuntimeHelix\shared\Microsoft.AspNetCore.App\$(SharedFxVersion)" />
101-
<Unzip Condition="Exists('$(RepoRoot)artifacts\packages\$(Configuration)\Shipping\Microsoft.AspNetCore.App.Ref.$(SharedFxVersion).nupkg')"
102-
SourceFiles="$(RepoRoot)artifacts\packages\$(Configuration)\Shipping\Microsoft.AspNetCore.App.Ref.$(SharedFxVersion).nupkg"
101+
<Unzip Condition="Exists('$(RepoRoot)artifacts\packages\$(Configuration)\Shipping\Microsoft.AspNetCore.App.Ref.$(SharedFxVersion).nupkg')"
102+
SourceFiles="$(RepoRoot)artifacts\packages\$(Configuration)\Shipping\Microsoft.AspNetCore.App.Ref.$(SharedFxVersion).nupkg"
103103
DestinationFolder="$(OutputPath)\AspNetCoreAppRuntimeHelix\packs\Microsoft.AspNetCore.App.Ref\$(SharedFxVersion)" />
104104
<ZipDirectory Condition="Exists('$(OutputPath)\AspNetCoreAppRuntimeHelix')"
105-
SourceDirectory="$(OutputPath)\AspNetCoreAppRuntimeHelix"
105+
SourceDirectory="$(OutputPath)\AspNetCoreAppRuntimeHelix"
106106
DestinationFile="$(OutputPath)\AspNetCoreAppRuntimeHelix.zip" Overwrite="true" />
107-
107+
108108
<ItemGroup>
109109
<HelixCorrelationPayload Include="$(OutputPath)\AspNetCoreAppRuntimeHelix.zip" Destination="$(DotNetCliDestination)" />
110110
</ItemGroup>
111111
</Target>
112-
112+
113113
<Target Name="Gather" BeforeTargets="Build">
114114
<MSBuild Projects="@(ProjectToBuild)"
115115
Targets="CreateHelixPayload"

0 commit comments

Comments
 (0)