Skip to content

Commit 4ffe406

Browse files
Merge latest Library.Template (#1586)
* Use safer `ToLower` variant for package IDs * Update NuGet/login action to v1.2.0 (512) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Ignore C# Dev Kit generated cache files * Update Microsoft Testing Platform to 2.2.2 (514) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency nerdbank.dotnetrepotools to v1.4.1 (515) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Dockerfile and global.json updates to v10.0.300 (516) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2 parents da99edd + 3459a1f commit 4ffe406

5 files changed

Lines changed: 7 additions & 4 deletions

File tree

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"rollForward": false
3232
},
3333
"nerdbank.dotnetrepotools": {
34-
"version": "1.3.22",
34+
"version": "1.4.1",
3535
"commands": [
3636
"repo"
3737
],

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,3 +358,6 @@ MigrationBackup/
358358

359359
# Analysis results
360360
*.sarif
361+
362+
# C# Dev Kit cache files
363+
*.lscache

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<PropertyGroup>
55
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
66
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
7-
<MicrosoftTestingPlatformVersion>2.2.1</MicrosoftTestingPlatformVersion>
7+
<MicrosoftTestingPlatformVersion>2.2.2</MicrosoftTestingPlatformVersion>
88
<MicroBuildVersion>2.0.226</MicroBuildVersion>
99
<CodeAnalysisVersion>3.11.0</CodeAnalysisVersion>
1010
<CodefixTestingVersion>1.1.3</CodefixTestingVersion>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "10.0.203",
3+
"version": "10.0.300",
44
"rollForward": "patch",
55
"allowPrerelease": false
66
},

tools/Download-NuGetPackage.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ if (!(Test-Path $OutputDirectory)) { New-Item -ItemType Directory -Path $OutputD
3737
$OutputDirectory = (Resolve-Path $OutputDirectory).Path
3838
$ConfigFile = (Resolve-Path $ConfigFile).Path
3939

40-
$packageIdLower = $PackageId.ToLower()
40+
$packageIdLower = $PackageId.ToLowerInvariant()
4141
$packageRoot = Join-Path $OutputDirectory $packageIdLower
4242

4343
if ($Version) {

0 commit comments

Comments
 (0)