Update DarcLib to handle source-build patches in VMR init (#14413)

This commit is contained in:
Přemek Vysoký 2022-08-29 13:54:20 +02:00 committed by GitHub
parent 7b679d5581
commit 7b01465aaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -207,9 +207,9 @@
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>692746db3f08766bc29e91e826ff15e5e8a82b44</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.DarcLib" Version="1.1.0-beta.22425.1">
<Dependency Name="Microsoft.DotNet.DarcLib" Version="1.1.0-beta.22429.1">
<Uri>https://github.com/dotnet/arcade-services</Uri>
<Sha>af1ca588ca991b9b570725581f7c7a4580629d3d</Sha>
<Sha>f169af20efd542ef8aba38154efb9ccd22eba2c4</Sha>
</Dependency>
<Dependency Name="Microsoft.Extensions.Logging.Console" Version="7.0.0-preview.7.22375.6">
<Uri>https://github.com/dotnet/runtime</Uri>

View file

@ -30,7 +30,7 @@
</PropertyGroup>
<PropertyGroup>
<!-- Dependency from https://github.com/dotnet/arcade-services -->
<MicrosoftDotNetDarcLibVersion>1.1.0-beta.22425.1</MicrosoftDotNetDarcLibVersion>
<MicrosoftDotNetDarcLibVersion>1.1.0-beta.22429.1</MicrosoftDotNetDarcLibVersion>
</PropertyGroup>
<PropertyGroup>
<!-- Dependency from https://github.com/dotnet/winforms -->

View file

@ -40,7 +40,7 @@ public class VirtualMonoRepo_Initialize : Build.Utilities.Task, ICancelableTask
private async Task<bool> ExecuteAsync()
{
var vmrInitializer = _serviceProvider.Value.GetRequiredService<IVmrInitializer>();
await vmrInitializer.InitializeVmr(Repository, Revision, false, _cancellationToken.Token);
await vmrInitializer.InitializeVmr(Repository, Revision, _cancellationToken.Token);
return true;
}