Skip to content

Commit 463df86

Browse files
committed
UpdateNugetPackages.ps1 - Update assembly/build version as part of script
- UpdateNugetPackages.ps1 now calls .\build.ps1 -Target update-build-version
1 parent d0c9adc commit 463df86

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

UpdateNugetPackages.ps1

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# Update the vcxproj files first
66
# Update the .Net csproj files modifying the xml file directly
77

8-
$CefVersion = '97.0.8'
8+
$CefVersion = '97.0.11'
9+
$CefSharpVersion = $CefVersion + "0"
910

1011
function RemoveEnsureNuGetPackageBuildImports
1112
{
@@ -61,4 +62,6 @@ foreach($file in $csprojFiles)
6162
$packRef.Version = $RedistVersion
6263

6364
$xml.Save( $file )
64-
}
65+
}
66+
67+
.\build.ps1 -Target update-build-version -Version $CefSharpVersion -AssemblyVersion $CefSharpVersion

0 commit comments

Comments
 (0)