Skip to content

Commit bb6267e

Browse files
committed
Updating .NET Buck release targets to add version to zip file name
1 parent 5e4adb6 commit bb6267e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dotnet/BUCK

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
include_defs('//dotnet/SELENIUM_DOTNET_VERSION')
2+
13
export_file(
24
name = 'keyfile',
35
src = 'WebDriver.snk',
@@ -12,7 +14,7 @@ zip_file(
1214
'//dotnet/src/webdriverbackedselenium:pack',
1315
'//dotnet/src/support:pack'
1416
],
15-
out = 'selenium-dotnet.zip'
17+
out = "selenium-dotnet-{}.zip".format(SE_VERSION)
1618
)
1719

1820
zip_file(
@@ -22,5 +24,5 @@ zip_file(
2224
'//dotnet/src/webdriverbackedselenium:pack_strongnamed',
2325
'//dotnet/src/support:pack_strongnamed'
2426
],
25-
out = 'selenium-dotnet-strongnamed.zip'
27+
out = "selenium-dotnet-strongnamed-{}.zip".format(SE_VERSION)
2628
)

0 commit comments

Comments
 (0)