Remove prebuilts for source build (#13360)
This commit is contained in:
parent
8d817f8070
commit
50660f31c8
|
|
@ -6,7 +6,9 @@
|
||||||
Without this here, we see regular failures with 'error MSB4236: The SDK 'Yarn.MSBuild' specified could not be found.'
|
Without this here, we see regular failures with 'error MSB4236: The SDK 'Yarn.MSBuild' specified could not be found.'
|
||||||
Since this project is evaluated before .npmproj files are loaded, this should cause the package to end
|
Since this project is evaluated before .npmproj files are loaded, this should cause the package to end
|
||||||
up in the NuGet cache ahead of time.
|
up in the NuGet cache ahead of time.
|
||||||
|
|
||||||
|
This is not needed in source build.
|
||||||
-->
|
-->
|
||||||
<PackageReference Include="Yarn.MSBuild" Version="1.15.2" />
|
<PackageReference Condition="'$(DotNetBuildFromSource)' != 'true'" Include="Yarn.MSBuild" Version="1.15.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -25,8 +25,8 @@
|
||||||
<!-- Workaround https://github.com/dotnet/source-build/issues/1112. Source link is currently disabled in source build so define this dummy target which is required for pack. -->
|
<!-- Workaround https://github.com/dotnet/source-build/issues/1112. Source link is currently disabled in source build so define this dummy target which is required for pack. -->
|
||||||
<Import Condition="'$(DotNetBuildFromSource)' == 'true'" Project="WorkaroundsImported.targets" />
|
<Import Condition="'$(DotNetBuildFromSource)' == 'true'" Project="WorkaroundsImported.targets" />
|
||||||
|
|
||||||
<!-- Workaround for https://github.com/dotnet/arcade/issues/204 -->
|
<!-- Workaround for https://github.com/dotnet/arcade/issues/204, not needed in source build -->
|
||||||
<ItemGroup>
|
<ItemGroup Condition="'$(DotNetBuildFromSource)' != 'true'">
|
||||||
<PackageReference Include="Internal.AspNetCore.BuildTasks" PrivateAssets="All" Version="$(InternalAspNetCoreBuildTasksPackageVersion)" IsImplicitlyDefined="true" />
|
<PackageReference Include="Internal.AspNetCore.BuildTasks" PrivateAssets="All" Version="$(InternalAspNetCoreBuildTasksPackageVersion)" IsImplicitlyDefined="true" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue