Update DarcLib to handle source-build patches in VMR init (#14413)
This commit is contained in:
parent
7b679d5581
commit
7b01465aaa
3 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||
|
|
|
@ -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 -->
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue