diff --git a/build/dependencies.props b/build/dependencies.props
index dcf23d85d4..ee542668be 100644
--- a/build/dependencies.props
+++ b/build/dependencies.props
@@ -4,6 +4,12 @@
2.1.6
2.1.6
+ 4.5.2-servicing-27114-05
+ 4.5.3-servicing-27114-05
+ 4.5.2-servicing-27114-05
+ 4.5.1-servicing-27114-05
+ 4.5.2-servicing-27114-05
+ 4.5.2-servicing-27114-05
@@ -170,15 +176,11 @@
4.5.0
1.5.0
4.5.0
- 4.5.1
4.5.1
4.5.0
5.2.0
3.1.1
- 4.5.2
- 4.5.1
4.3.2
- 4.5.1
4.5.2
4.5.0
3.1.1
@@ -186,7 +188,6 @@
1.6.0
4.5.2
4.3.0
- 4.5.0
4.5.0
4.5.0
4.5.1
@@ -194,7 +195,6 @@
4.5.0
4.5.0
4.9.0
- 4.5.1
4.5.0
1.3.7
9.0.1
diff --git a/build/tasks/CheckVersionOverrides.cs b/build/tasks/CheckVersionOverrides.cs
index ad75aa8b2b..a510a8b800 100644
--- a/build/tasks/CheckVersionOverrides.cs
+++ b/build/tasks/CheckVersionOverrides.cs
@@ -24,7 +24,7 @@ namespace RepoTasks
var versionOverrides = ProjectRootElement.Open(DotNetPackageVersionPropsPath);
var dependencies = ProjectRootElement.Open(DependenciesFile);
var pinnedVersions = dependencies.PropertyGroups
- .Where(p => !string.Equals("Package Versions: Auto", p.Label))
+ .Where(p => string.Equals("Package Versions: Pinned", p.Label))
.SelectMany(p => p.Properties)
.ToDictionary(p => p.Name, p => p.Value, StringComparer.OrdinalIgnoreCase);
diff --git a/scripts/GenerateTags.ps1 b/scripts/GenerateTags.ps1
index 0cd9c331ca..f0866ffcab 100755
--- a/scripts/GenerateTags.ps1
+++ b/scripts/GenerateTags.ps1
@@ -43,10 +43,10 @@ function New-GitTag {
Invoke-Block { & git tag -m "v$Tag" $Tag HEAD }
Write-Host -f Magenta "${Repo}: added tag '$Tag'"
}
- }
- if ($Push -and $PSCmdlet.ShouldProcess($Repo, "Push tag $Tag to origin")) {
- Invoke-Block { & git push origin refs/tags/$Tag }
+ if ($Push -and $PSCmdlet.ShouldProcess($Repo, "Push tag $Tag to origin")) {
+ Invoke-Block { & git push origin refs/tags/$Tag }
+ }
}
}
finally {