Skip to content

Commit 2a0a4fc

Browse files
authored
fix: Piping no longer worked (#235)
Fixes: #233 Upstream package fixed logging which messed up piping
1 parent 272b36c commit 2a0a4fc

File tree

9 files changed

+68
-70
lines changed

9 files changed

+68
-70
lines changed

src/Svrooij.WinTuner.CmdLets/Commands/Graph/UpdateWtIntuneApp.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Svrooij.WinTuner.CmdLets.Commands.Graph;
2222
[Cmdlet(VerbsData.Update, "WtIntuneApp", HelpUri = "https://wintuner.app/docs/wintuner-powershell/Update-WtIntuneApp")]
2323
[OutputType(typeof(MobileApp))]
2424
[GenerateBindings]
25-
public class UpdateWtIntuneApp : BaseIntuneCmdlet
25+
public partial class UpdateWtIntuneApp : BaseIntuneCmdlet
2626
{
2727
/// <summary>
2828
/// <para type="description">Id of the app in Intune</para>
@@ -70,7 +70,7 @@ public class UpdateWtIntuneApp : BaseIntuneCmdlet
7070
private ILogger<UpdateWtIntuneApp>? logger;
7171

7272
[ServiceDependency]
73-
private GraphClientFactory? gcf;
73+
private WingetIntune.Graph.GraphClientFactory? gcf;
7474

7575
/// <inheritdoc/>
7676
protected override async Task ProcessAuthenticatedAsync(IAuthenticationProvider provider, CancellationToken cancellationToken)

src/Svrooij.WinTuner.CmdLets/Commands/ShowMsiInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace Svrooij.WinTuner.CmdLets.Commands;
2828
[Cmdlet(VerbsCommon.Show, "MsiInfo", HelpUri = "https://wintuner.app/docs/wintuner-powershell/Show-MsiInfo", DefaultParameterSetName = nameof(MsiPath))]
2929
[OutputType(typeof(Models.MsiInfo))]
3030
[GenerateBindings]
31-
public class ShowMsiInfo : DependencyCmdlet<Startup>
31+
public partial class ShowMsiInfo : DependencyCmdlet<Startup>
3232
{
3333
/// <summary>
3434
/// <para type="description">Path to the MSI file</para>

src/Svrooij.WinTuner.CmdLets/Commands/Testing/TestWtIntuneWin.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ namespace Svrooij.WinTuner.CmdLets.Commands.Testing;
2121
/// <code>Test-WtIntuneWin -PackageFolder &quot;D:\packages\JanDeDobbeleer.OhMyPosh\22.0.3&quot;</code>
2222
/// </example>
2323
[Cmdlet(VerbsDiagnostic.Test, "WtIntuneWin", DefaultParameterSetName = nameof(PackageFolder), HelpUri = "https://wintuner.app/docs/wintuner-powershell/Test-WtIntuneWin/")]
24-
[GenerateBindings]
2524
public class TestWtIntuneWin : DependencyCmdlet<Startup>
2625
{
2726
private const string ParameterSetWinGet = "WinGet";

src/Svrooij.WinTuner.CmdLets/Commands/Testing/TestWtSetupFile.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ namespace Svrooij.WinTuner.CmdLets.Commands.Testing;
1919
/// <code>Test-WtSetupFile -SetupFile D:\packages\xyz.exe -Installer "all your arguments"</code>
2020
/// </example>
2121
[Cmdlet(VerbsDiagnostic.Test, "WtSetupFile", HelpUri = "https://wintuner.app/docs/wintuner-powershell/Test-WtSetupFile/")]
22-
[GenerateBindings]
2322
public class TestWtSetupFile : DependencyCmdlet<Startup>
2423
{
2524
[ServiceDependency]

src/Svrooij.WinTuner.CmdLets/Svrooij.WinTuner.CmdLets.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
</PropertyGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Azure.Identity" Version="1.15.0" />
17+
<PackageReference Include="Azure.Identity" Version="1.16.0" />
1818
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="8.0.1" />
1919
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.4.11">
2020
<PrivateAssets>All</PrivateAssets>
2121
</PackageReference>
22-
<PackageReference Include="Svrooij.PowerShell.DI" Version="1.3.2" />
22+
<PackageReference Include="Svrooij.PowerShell.DI" Version="1.3.4" />
2323
</ItemGroup>
2424

2525
<ItemGroup>

src/Svrooij.WinTuner.CmdLets/packages.lock.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"net8.0": {
55
"Azure.Identity": {
66
"type": "Direct",
7-
"requested": "[1.15.0, )",
8-
"resolved": "1.15.0",
9-
"contentHash": "tvJVy5s8VdsAYHIcBw1KrwDTcTWr2K5fG5o/xEJ2zU3+QUViDx/utut83+fGoB/bcBspxuC6wG650GwAUkU2UQ==",
7+
"requested": "[1.16.0, )",
8+
"resolved": "1.16.0",
9+
"contentHash": "ZTtJt9N1hW9S7JRt05aBy894mp9uK4KbfcVcg2OndKbph/6RCcDEisdBV9iNHiNDSXXQRR52SAYy8RhknQ1xEA==",
1010
"dependencies": {
11-
"Azure.Core": "1.47.1",
12-
"Microsoft.Identity.Client": "4.73.1",
13-
"Microsoft.Identity.Client.Extensions.Msal": "4.73.1"
11+
"Azure.Core": "1.47.3",
12+
"Microsoft.Identity.Client": "4.76.0",
13+
"Microsoft.Identity.Client.Extensions.Msal": "4.76.0"
1414
}
1515
},
1616
"Microsoft.Extensions.Logging.Configuration": {
@@ -65,9 +65,9 @@
6565
},
6666
"Svrooij.PowerShell.DI": {
6767
"type": "Direct",
68-
"requested": "[1.3.2, )",
69-
"resolved": "1.3.2",
70-
"contentHash": "LFk/eTN+aKNvbWZko94tgWf7J+mDl4LOJ36Ziu3nDECW4Zy0EGTpqZQ8v59rYPsRwBTgjLkWFiO7oOoz/6DHSA=="
68+
"requested": "[1.3.4, )",
69+
"resolved": "1.3.4",
70+
"contentHash": "1j6jQyAJ+H3eBkZi2uBZH0AfUiQcVkrUKd7TCqoLpq47HgnHeztCYUtCkGwjpmi8qIPMOf3RaRL8M1MflcvzGQ=="
7171
},
7272
"Azure.Core": {
7373
"type": "Transitive",
@@ -303,28 +303,28 @@
303303
},
304304
"Microsoft.Identity.Client": {
305305
"type": "Transitive",
306-
"resolved": "4.76.0",
307-
"contentHash": "j2FtmljuCveDJ7umBVYm6Bx3iVGA71U07Dc7byGr2Hrj7XlByZSknruCBUeYN3V75nn1VEhXegxE0MerxvxrXQ==",
306+
"resolved": "4.77.0",
307+
"contentHash": "VV4ymvWZ140P7ehNsMLCOWsRYUwMOOFs0Uu6Y0wj1ItyLo0OsMdHh1x8pgisuHsNEEOzQdt2CNzrAwxqiL2wUA==",
308308
"dependencies": {
309-
"Microsoft.IdentityModel.Abstractions": "6.35.0",
309+
"Microsoft.IdentityModel.Abstractions": "8.14.0",
310310
"System.Diagnostics.DiagnosticSource": "6.0.1"
311311
}
312312
},
313313
"Microsoft.Identity.Client.Broker": {
314314
"type": "Transitive",
315-
"resolved": "4.76.0",
316-
"contentHash": "dJEbSPSNm8L/e+QSvTFUKkspUk3YVaJF97VB0RpxIUAs3h8/QAXbVVGjNyVwoU7UV43e4+xrMJOXOuQ089+RAg==",
315+
"resolved": "4.77.0",
316+
"contentHash": "9QHafFw38usFLYBJA0NwS7S8rJMHascdrJP/j1nEyxBseXd4XvE0NBrScp/WhLHADYlzRHsuzvVJWaf+T/hSQA==",
317317
"dependencies": {
318-
"Microsoft.Identity.Client": "4.76.0",
318+
"Microsoft.Identity.Client": "4.77.0",
319319
"Microsoft.Identity.Client.NativeInterop": "0.19.4"
320320
}
321321
},
322322
"Microsoft.Identity.Client.Extensions.Msal": {
323323
"type": "Transitive",
324-
"resolved": "4.76.0",
325-
"contentHash": "D0n3yMTa3gnDh1usrJmyxGWKYeqbQNCWLgQ0Tswf7S6nk9YobiCOX+M2V8EX5SPqkZxpwkTT6odAhaafu3TIeA==",
324+
"resolved": "4.77.0",
325+
"contentHash": "GmDx12eia11gvJ0fPmntPXnZe+4NPkfaS5dVX4uaTsilQRdV2l1bxBi8wV5p9TQRZ0/5+bKLOAE9iLl0Y3pemw==",
326326
"dependencies": {
327-
"Microsoft.Identity.Client": "4.76.0",
327+
"Microsoft.Identity.Client": "4.77.0",
328328
"System.Security.Cryptography.ProtectedData": "4.5.0"
329329
}
330330
},
@@ -335,8 +335,8 @@
335335
},
336336
"Microsoft.IdentityModel.Abstractions": {
337337
"type": "Transitive",
338-
"resolved": "8.6.1",
339-
"contentHash": "OwmvCXYTttrxV3qT7QKDkoQP4/DB4RWjTwEqV+dNfb2opHn29WGDzoF+r4BVFQVy+BDYMhRlhIp8g3jSyJd+4Q=="
338+
"resolved": "8.14.0",
339+
"contentHash": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ=="
340340
},
341341
"Microsoft.IdentityModel.JsonWebTokens": {
342342
"type": "Transitive",
@@ -1087,8 +1087,8 @@
10871087
"Microsoft.Extensions.Logging.Abstractions": "[8.0.3, )",
10881088
"Microsoft.Extensions.Options": "[8.0.2, )",
10891089
"Microsoft.Graph.Beta": "[5.120.0-preview, )",
1090-
"Microsoft.Identity.Client.Broker": "[4.76.0, )",
1091-
"Microsoft.Identity.Client.Extensions.Msal": "[4.76.0, )",
1090+
"Microsoft.Identity.Client.Broker": "[4.77.0, )",
1091+
"Microsoft.Identity.Client.Extensions.Msal": "[4.77.0, )",
10921092
"Microsoft.Kiota.Authentication.Azure": "[1.19.1, )",
10931093
"OpenMcdf": "[2.3.1, 2.3.1]",
10941094
"Riok.Mapperly": "[3.6.0, )",

src/WingetIntune/WingetIntune.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.3" />
3434
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
3535
<PackageReference Include="Microsoft.Graph.Beta" Version="5.120.0-preview" />
36-
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.76.0" />
37-
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.76.0" />
36+
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.77.0" />
37+
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.77.0" />
3838
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.19.1" />
3939
<PackageReference Include="OpenMcdf" Version="[2.3.1]" />
4040
<PackageReference Include="Riok.Mapperly" Version="3.6.0" />

src/WingetIntune/packages.lock.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -67,21 +67,21 @@
6767
},
6868
"Microsoft.Identity.Client.Broker": {
6969
"type": "Direct",
70-
"requested": "[4.76.0, )",
71-
"resolved": "4.76.0",
72-
"contentHash": "dJEbSPSNm8L/e+QSvTFUKkspUk3YVaJF97VB0RpxIUAs3h8/QAXbVVGjNyVwoU7UV43e4+xrMJOXOuQ089+RAg==",
70+
"requested": "[4.77.0, )",
71+
"resolved": "4.77.0",
72+
"contentHash": "9QHafFw38usFLYBJA0NwS7S8rJMHascdrJP/j1nEyxBseXd4XvE0NBrScp/WhLHADYlzRHsuzvVJWaf+T/hSQA==",
7373
"dependencies": {
74-
"Microsoft.Identity.Client": "4.76.0",
74+
"Microsoft.Identity.Client": "4.77.0",
7575
"Microsoft.Identity.Client.NativeInterop": "0.19.4"
7676
}
7777
},
7878
"Microsoft.Identity.Client.Extensions.Msal": {
7979
"type": "Direct",
80-
"requested": "[4.76.0, )",
81-
"resolved": "4.76.0",
82-
"contentHash": "D0n3yMTa3gnDh1usrJmyxGWKYeqbQNCWLgQ0Tswf7S6nk9YobiCOX+M2V8EX5SPqkZxpwkTT6odAhaafu3TIeA==",
80+
"requested": "[4.77.0, )",
81+
"resolved": "4.77.0",
82+
"contentHash": "GmDx12eia11gvJ0fPmntPXnZe+4NPkfaS5dVX4uaTsilQRdV2l1bxBi8wV5p9TQRZ0/5+bKLOAE9iLl0Y3pemw==",
8383
"dependencies": {
84-
"Microsoft.Identity.Client": "4.76.0",
84+
"Microsoft.Identity.Client": "4.77.0",
8585
"System.IO.FileSystem.AccessControl": "5.0.0",
8686
"System.Security.Cryptography.ProtectedData": "4.5.0"
8787
}
@@ -195,10 +195,10 @@
195195
},
196196
"Microsoft.Identity.Client": {
197197
"type": "Transitive",
198-
"resolved": "4.76.0",
199-
"contentHash": "j2FtmljuCveDJ7umBVYm6Bx3iVGA71U07Dc7byGr2Hrj7XlByZSknruCBUeYN3V75nn1VEhXegxE0MerxvxrXQ==",
198+
"resolved": "4.77.0",
199+
"contentHash": "VV4ymvWZ140P7ehNsMLCOWsRYUwMOOFs0Uu6Y0wj1ItyLo0OsMdHh1x8pgisuHsNEEOzQdt2CNzrAwxqiL2wUA==",
200200
"dependencies": {
201-
"Microsoft.IdentityModel.Abstractions": "6.35.0",
201+
"Microsoft.IdentityModel.Abstractions": "8.14.0",
202202
"System.Diagnostics.DiagnosticSource": "6.0.1"
203203
}
204204
},
@@ -209,8 +209,8 @@
209209
},
210210
"Microsoft.IdentityModel.Abstractions": {
211211
"type": "Transitive",
212-
"resolved": "8.6.1",
213-
"contentHash": "OwmvCXYTttrxV3qT7QKDkoQP4/DB4RWjTwEqV+dNfb2opHn29WGDzoF+r4BVFQVy+BDYMhRlhIp8g3jSyJd+4Q=="
212+
"resolved": "8.14.0",
213+
"contentHash": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ=="
214214
},
215215
"Microsoft.IdentityModel.JsonWebTokens": {
216216
"type": "Transitive",
@@ -507,21 +507,21 @@
507507
},
508508
"Microsoft.Identity.Client.Broker": {
509509
"type": "Direct",
510-
"requested": "[4.76.0, )",
511-
"resolved": "4.76.0",
512-
"contentHash": "dJEbSPSNm8L/e+QSvTFUKkspUk3YVaJF97VB0RpxIUAs3h8/QAXbVVGjNyVwoU7UV43e4+xrMJOXOuQ089+RAg==",
510+
"requested": "[4.77.0, )",
511+
"resolved": "4.77.0",
512+
"contentHash": "9QHafFw38usFLYBJA0NwS7S8rJMHascdrJP/j1nEyxBseXd4XvE0NBrScp/WhLHADYlzRHsuzvVJWaf+T/hSQA==",
513513
"dependencies": {
514-
"Microsoft.Identity.Client": "4.76.0",
514+
"Microsoft.Identity.Client": "4.77.0",
515515
"Microsoft.Identity.Client.NativeInterop": "0.19.4"
516516
}
517517
},
518518
"Microsoft.Identity.Client.Extensions.Msal": {
519519
"type": "Direct",
520-
"requested": "[4.76.0, )",
521-
"resolved": "4.76.0",
522-
"contentHash": "D0n3yMTa3gnDh1usrJmyxGWKYeqbQNCWLgQ0Tswf7S6nk9YobiCOX+M2V8EX5SPqkZxpwkTT6odAhaafu3TIeA==",
520+
"requested": "[4.77.0, )",
521+
"resolved": "4.77.0",
522+
"contentHash": "GmDx12eia11gvJ0fPmntPXnZe+4NPkfaS5dVX4uaTsilQRdV2l1bxBi8wV5p9TQRZ0/5+bKLOAE9iLl0Y3pemw==",
523523
"dependencies": {
524-
"Microsoft.Identity.Client": "4.76.0",
524+
"Microsoft.Identity.Client": "4.77.0",
525525
"System.Security.Cryptography.ProtectedData": "4.5.0"
526526
}
527527
},
@@ -668,10 +668,10 @@
668668
},
669669
"Microsoft.Identity.Client": {
670670
"type": "Transitive",
671-
"resolved": "4.76.0",
672-
"contentHash": "j2FtmljuCveDJ7umBVYm6Bx3iVGA71U07Dc7byGr2Hrj7XlByZSknruCBUeYN3V75nn1VEhXegxE0MerxvxrXQ==",
671+
"resolved": "4.77.0",
672+
"contentHash": "VV4ymvWZ140P7ehNsMLCOWsRYUwMOOFs0Uu6Y0wj1ItyLo0OsMdHh1x8pgisuHsNEEOzQdt2CNzrAwxqiL2wUA==",
673673
"dependencies": {
674-
"Microsoft.IdentityModel.Abstractions": "6.35.0",
674+
"Microsoft.IdentityModel.Abstractions": "8.14.0",
675675
"System.Diagnostics.DiagnosticSource": "6.0.1"
676676
}
677677
},
@@ -682,8 +682,8 @@
682682
},
683683
"Microsoft.IdentityModel.Abstractions": {
684684
"type": "Transitive",
685-
"resolved": "8.6.1",
686-
"contentHash": "OwmvCXYTttrxV3qT7QKDkoQP4/DB4RWjTwEqV+dNfb2opHn29WGDzoF+r4BVFQVy+BDYMhRlhIp8g3jSyJd+4Q=="
685+
"resolved": "8.14.0",
686+
"contentHash": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ=="
687687
},
688688
"Microsoft.IdentityModel.JsonWebTokens": {
689689
"type": "Transitive",

tests/WingetIntune.Tests/packages.lock.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -237,28 +237,28 @@
237237
},
238238
"Microsoft.Identity.Client": {
239239
"type": "Transitive",
240-
"resolved": "4.76.0",
241-
"contentHash": "j2FtmljuCveDJ7umBVYm6Bx3iVGA71U07Dc7byGr2Hrj7XlByZSknruCBUeYN3V75nn1VEhXegxE0MerxvxrXQ==",
240+
"resolved": "4.77.0",
241+
"contentHash": "VV4ymvWZ140P7ehNsMLCOWsRYUwMOOFs0Uu6Y0wj1ItyLo0OsMdHh1x8pgisuHsNEEOzQdt2CNzrAwxqiL2wUA==",
242242
"dependencies": {
243-
"Microsoft.IdentityModel.Abstractions": "6.35.0",
243+
"Microsoft.IdentityModel.Abstractions": "8.14.0",
244244
"System.Diagnostics.DiagnosticSource": "6.0.1"
245245
}
246246
},
247247
"Microsoft.Identity.Client.Broker": {
248248
"type": "Transitive",
249-
"resolved": "4.76.0",
250-
"contentHash": "dJEbSPSNm8L/e+QSvTFUKkspUk3YVaJF97VB0RpxIUAs3h8/QAXbVVGjNyVwoU7UV43e4+xrMJOXOuQ089+RAg==",
249+
"resolved": "4.77.0",
250+
"contentHash": "9QHafFw38usFLYBJA0NwS7S8rJMHascdrJP/j1nEyxBseXd4XvE0NBrScp/WhLHADYlzRHsuzvVJWaf+T/hSQA==",
251251
"dependencies": {
252-
"Microsoft.Identity.Client": "4.76.0",
252+
"Microsoft.Identity.Client": "4.77.0",
253253
"Microsoft.Identity.Client.NativeInterop": "0.19.4"
254254
}
255255
},
256256
"Microsoft.Identity.Client.Extensions.Msal": {
257257
"type": "Transitive",
258-
"resolved": "4.76.0",
259-
"contentHash": "D0n3yMTa3gnDh1usrJmyxGWKYeqbQNCWLgQ0Tswf7S6nk9YobiCOX+M2V8EX5SPqkZxpwkTT6odAhaafu3TIeA==",
258+
"resolved": "4.77.0",
259+
"contentHash": "GmDx12eia11gvJ0fPmntPXnZe+4NPkfaS5dVX4uaTsilQRdV2l1bxBi8wV5p9TQRZ0/5+bKLOAE9iLl0Y3pemw==",
260260
"dependencies": {
261-
"Microsoft.Identity.Client": "4.76.0",
261+
"Microsoft.Identity.Client": "4.77.0",
262262
"System.Security.Cryptography.ProtectedData": "4.5.0"
263263
}
264264
},
@@ -269,8 +269,8 @@
269269
},
270270
"Microsoft.IdentityModel.Abstractions": {
271271
"type": "Transitive",
272-
"resolved": "8.6.1",
273-
"contentHash": "OwmvCXYTttrxV3qT7QKDkoQP4/DB4RWjTwEqV+dNfb2opHn29WGDzoF+r4BVFQVy+BDYMhRlhIp8g3jSyJd+4Q=="
272+
"resolved": "8.14.0",
273+
"contentHash": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ=="
274274
},
275275
"Microsoft.IdentityModel.JsonWebTokens": {
276276
"type": "Transitive",
@@ -553,8 +553,8 @@
553553
"Microsoft.Extensions.Logging.Abstractions": "[8.0.3, )",
554554
"Microsoft.Extensions.Options": "[8.0.2, )",
555555
"Microsoft.Graph.Beta": "[5.120.0-preview, )",
556-
"Microsoft.Identity.Client.Broker": "[4.76.0, )",
557-
"Microsoft.Identity.Client.Extensions.Msal": "[4.76.0, )",
556+
"Microsoft.Identity.Client.Broker": "[4.77.0, )",
557+
"Microsoft.Identity.Client.Extensions.Msal": "[4.77.0, )",
558558
"Microsoft.Kiota.Authentication.Azure": "[1.19.1, )",
559559
"OpenMcdf": "[2.3.1, 2.3.1]",
560560
"Riok.Mapperly": "[3.6.0, )",

0 commit comments

Comments
 (0)