You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.23411.1 -> To Version 8.0.0-beta.23419.1
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Install and run the 'Microsoft.DotNet.VersionTools.Cli' tool with the 'trim-artifacts-version' command to trim the version from the NuGet assets file name.
4
+
5
+
.PARAMETERInputPath
6
+
Full path to directory where artifact packages are stored
7
+
8
+
.PARAMETERRecursive
9
+
Search for NuGet packages recursively
10
+
11
+
#>
12
+
13
+
Param(
14
+
[string] $InputPath,
15
+
[bool] $Recursive=$true
16
+
)
17
+
18
+
$CliToolName="Microsoft.DotNet.VersionTools.Cli"
19
+
20
+
functionInstall-VersionTools-Cli {
21
+
param(
22
+
[Parameter(Mandatory=$true)][string]$Version
23
+
)
24
+
25
+
Write-Host"Installing the package '$CliToolName' with a version of '$version' ..."
0 commit comments