You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
681 B
19 lines
681 B
<Project>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NuGet.Build.Tasks.Pack" Version="5.10.0" IsImplicitlyDefined="true" />
|
|
</ItemGroup>
|
|
|
|
<!--
|
|
Restore the .NET workloads immediately after the .NET tooling has been installed by Arcade.
|
|
-->
|
|
|
|
<Target Name="RestoreWorkloads" AfterTargets="InstallDotNetCore" Condition=" '$(RestoreDotNetWorkloads)' == 'true' ">
|
|
<Message Text="Installing the .NET workloads required to build the solution..." />
|
|
|
|
<Exec Command='"$(DotNetTool)" workload restore' WorkingDirectory="$(RepoRoot)" ConsoleToMSBuild="true">
|
|
<Output TaskParameter="ConsoleOutput" PropertyName="OutputOfExec" />
|
|
</Exec>
|
|
</Target>
|
|
|
|
</Project>
|
|
|