diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 781fe3cf3..777e86bfd 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -31,7 +31,7 @@ "rollForward": false }, "nerdbank.dotnetrepotools": { - "version": "1.3.22", + "version": "1.4.1", "commands": [ "repo" ], diff --git a/.gitignore b/.gitignore index 1b7799301..83b1d55e3 100644 --- a/.gitignore +++ b/.gitignore @@ -358,3 +358,6 @@ MigrationBackup/ # Analysis results *.sarif + +# C# Dev Kit cache files +*.lscache diff --git a/Directory.Packages.props b/Directory.Packages.props index 5a869eb8b..c11799795 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -4,7 +4,7 @@ true true - 2.2.1 + 2.2.2 2.0.226 3.11.0 1.1.3 diff --git a/global.json b/global.json index 1ebb0a7a5..e6b3a3ae0 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "10.0.203", + "version": "10.0.300", "rollForward": "patch", "allowPrerelease": false }, diff --git a/tools/Download-NuGetPackage.ps1 b/tools/Download-NuGetPackage.ps1 index 6eef937f8..5864c6892 100644 --- a/tools/Download-NuGetPackage.ps1 +++ b/tools/Download-NuGetPackage.ps1 @@ -37,7 +37,7 @@ if (!(Test-Path $OutputDirectory)) { New-Item -ItemType Directory -Path $OutputD $OutputDirectory = (Resolve-Path $OutputDirectory).Path $ConfigFile = (Resolve-Path $ConfigFile).Path -$packageIdLower = $PackageId.ToLower() +$packageIdLower = $PackageId.ToLowerInvariant() $packageRoot = Join-Path $OutputDirectory $packageIdLower if ($Version) {