Update VMR tooling to latest (#14734)

This commit is contained in:
Přemek Vysoký 2022-10-12 18:52:02 +02:00 committed by GitHub
parent 1001a6aaae
commit e194eed952
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -206,9 +206,9 @@
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>7cdba99308169f56130497633e600df49ecc7897</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.DarcLib" Version="1.1.0-beta.22511.1">
<Dependency Name="Microsoft.DotNet.DarcLib" Version="1.1.0-beta.22512.1">
<Uri>https://github.com/dotnet/arcade-services</Uri>
<Sha>3dd6072bffe13a128222ac91fce1737cd1d07993</Sha>
<Sha>537a89e203d461f66ad44377e8dc4f224a028831</Sha>
</Dependency>
<Dependency Name="Microsoft.Extensions.Logging.Console" Version="7.0.0-rc.1.22426.10">
<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.22511.1</MicrosoftDotNetDarcLibVersion>
<MicrosoftDotNetDarcLibVersion>1.1.0-beta.22512.1</MicrosoftDotNetDarcLibVersion>
</PropertyGroup>
<PropertyGroup>
<!-- Dependency from https://github.com/dotnet/winforms -->

View file

@ -58,6 +58,6 @@ public class VirtualMonoRepo_Initialize : Build.Utilities.Task, ICancelableTask
private IServiceProvider CreateServiceProvider() => new ServiceCollection()
.AddLogging(b => b.AddConsole().AddFilter(l => l >= LogLevel.Information))
.AddSingleton<IRemoteFactory>(sp => ActivatorUtilities.CreateInstance<RemoteFactory>(sp, TmpPath))
.AddVmrManagers("git", sp => new VmrManagerConfiguration(VmrPath, TmpPath))
.AddVmrManagers("git", sp => new VmrInfo(VmrPath, TmpPath))
.BuildServiceProvider();
}