Skip to content

Commit 4f53602

Browse files
committed
Fix assembly version
1 parent 082e749 commit 4f53602

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
id: versions
2828
run: dotnet run -c Release --project ChromeForTesting/ChromeForTesting.VersionManager
2929
env:
30-
VERSION_INCREMENT: '21'
30+
VERSION_INCREMENT: '22'
3131

3232
VerifyTagExists:
3333
needs:

ChromeForTesting/ChromeForTesting/ChromeForTesting.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PropertyGroup>
1212
<PackageId>ChromeForTesting</PackageId>
1313
<Description>Chrome for Testing binary distributed as nuget package. It has all you need to start Chrome on server/local without any installation on system or downloading in runtime, it works even in scratch Docker image.</Description>
14-
<Version Condition=" '$(Configuration)' == 'Debug' ">125.0.6422.6001</Version>
14+
<Version Condition=" '$(Configuration)' == 'Debug' ">125.0.6422.600111</Version>
1515
<Authors>MyDesigns Devs</Authors>
1616
<Company>MyDesigns</Company>
1717
<RepositoryUrl>https://github.com/madcoons/chrome-for-testing-nuget.git</RepositoryUrl>
@@ -20,6 +20,7 @@
2020
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2121
<PackageTags>Chrome;ChromeForTesting;Browser;Portable;No-Installation;Cross-Platform</PackageTags>
2222
<PackageIcon>icon.png</PackageIcon>
23+
<AssemblyVersion>$(ChromeVersion)</AssemblyVersion><!-- Version Revision can be greater then limit of 6422 so using ChromeVersion instead -->
2324
</PropertyGroup>
2425

2526
<Target Name="GenerateVersionConstant" BeforeTargets="BeforeCompile">

0 commit comments

Comments
 (0)