Skip to content

Commit 5a06ace

Browse files
[main] Update dependencies from dotnet/arcade-services (#15030)
[main] Update dependencies from dotnet/arcade-services - Add N/A tokens - Remove IRemoteFactory
1 parent 4140814 commit 5a06ace

File tree

5 files changed

+7
-50
lines changed

5 files changed

+7
-50
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"microsoft.dotnet.darc": {
6-
"version": "1.1.0-beta.22561.2",
6+
"version": "1.1.0-beta.22573.3",
77
"commands": [
88
"darc"
99
]

eng/Version.Details.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,13 +205,13 @@
205205
<Uri>https://github.com/dotnet/arcade</Uri>
206206
<Sha>80b6be47e1425ea90c5febffac119250043a0c92</Sha>
207207
</Dependency>
208-
<Dependency Name="Microsoft.DotNet.Darc" Version="1.1.0-beta.22561.2">
208+
<Dependency Name="Microsoft.DotNet.Darc" Version="1.1.0-beta.22573.3">
209209
<Uri>https://github.com/dotnet/arcade-services</Uri>
210-
<Sha>e1c11c90d26581339cca9684399250101cbbc3bb</Sha>
210+
<Sha>a0237ac5a1c16bca4ede7a6201f2abb165dcaabc</Sha>
211211
</Dependency>
212-
<Dependency Name="Microsoft.DotNet.DarcLib" Version="1.1.0-beta.22561.2">
212+
<Dependency Name="Microsoft.DotNet.DarcLib" Version="1.1.0-beta.22573.3">
213213
<Uri>https://github.com/dotnet/arcade-services</Uri>
214-
<Sha>e1c11c90d26581339cca9684399250101cbbc3bb</Sha>
214+
<Sha>a0237ac5a1c16bca4ede7a6201f2abb165dcaabc</Sha>
215215
</Dependency>
216216
<Dependency Name="Microsoft.Extensions.Logging.Console" Version="8.0.0-alpha.1.22557.12">
217217
<Uri>https://github.com/dotnet/runtime</Uri>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</PropertyGroup>
3131
<PropertyGroup>
3232
<!-- Dependency from https://github.com/dotnet/arcade-services -->
33-
<MicrosoftDotNetDarcLibVersion>1.1.0-beta.22561.2</MicrosoftDotNetDarcLibVersion>
33+
<MicrosoftDotNetDarcLibVersion>1.1.0-beta.22573.3</MicrosoftDotNetDarcLibVersion>
3434
</PropertyGroup>
3535
<PropertyGroup>
3636
<!-- Dependency from https://github.com/dotnet/winforms -->

src/VirtualMonoRepo/Tasks/RemoteFactory.cs

Lines changed: 0 additions & 42 deletions
This file was deleted.

src/VirtualMonoRepo/Tasks/VirtualMonoRepo_Initialize.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ private async Task<bool> ExecuteAsync()
6161

6262
private IServiceProvider CreateServiceProvider() => new ServiceCollection()
6363
.AddLogging(b => b.AddConsole().AddFilter(l => l >= LogLevel.Information))
64-
.AddSingleton<IRemoteFactory>(sp => ActivatorUtilities.CreateInstance<RemoteFactory>(sp, TmpPath))
65-
.AddVmrManagers("git", sp => new VmrInfo(VmrPath, TmpPath))
64+
.AddVmrManagers("git", VmrPath, TmpPath, null, null)
6665
.BuildServiceProvider();
6766
}

0 commit comments

Comments
 (0)