Skip to content

Commit

Permalink
[dotnet] Rename strong assembly name (#12861)
Browse files Browse the repository at this point in the history
  • Loading branch information
nvborisenko authored Oct 4, 2023
1 parent e941051 commit b42044e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions dotnet/src/support/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ csharp_library(
"PageObjects/**/*.cs",
"UI/*.cs",
]) + [":assembly-info"],
out = "WebDriver.Support",
out = "WebDriver.Support.StrongNamed",
keyfile = "//dotnet:WebDriver.snk",
private_deps = [
framework("nuget", "NETStandard.Library"),
Expand All @@ -95,9 +95,9 @@ nuget_pack(
},
id = "Selenium.Support.StrongNamed",
libs = {
":support-strongnamed-lib": "WebDriver.Support",
":support-strongnamed-lib": "WebDriver.Support.StrongNamed",
},
nuspec_template = "WebDriver.Support.nuspec",
nuspec_template = "WebDriver.Support.StrongNamed.nuspec",
tags = [
"block-network",
],
Expand Down
4 changes: 2 additions & 2 deletions dotnet/src/webdriver/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ csharp_library(
] + glob([
"**/*.cs",
]) + devtools_version_targets(),
out = "WebDriver",
out = "WebDriver.StrongNamed",
keyfile = "//dotnet:WebDriver.snk",
private_deps = [
framework("nuget", "NETStandard.Library"),
Expand Down Expand Up @@ -130,7 +130,7 @@ nuget_pack(
},
id = "Selenium.WebDriver.StrongNamed",
libs = {
":webdriver-strongnamed-lib": "WebDriver",
":webdriver-strongnamed-lib": "WebDriver.StrongNamed",
},
nuspec_template = "WebDriver.StrongNamed.nuspec",
property_group_vars = {
Expand Down

0 comments on commit b42044e

Please sign in to comment.