Skip to content

Commit

Permalink
[dotnet] add identity logging and abstraction packages
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Jul 15, 2022
1 parent 6222bb2 commit 21a39ab
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dotnet/src/webdriver/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ generated_assembly_info(
deps = [
"@json.net//:Newtonsoft.Json",
"@identitymodel.tokens//:Microsoft.IdentityModel.Tokens",
"@identitymodel.logging//:Microsoft.IdentityModel.Logging",
"@net//:System",
"@net//:System.Core",
"@net//:System.Data",
Expand Down Expand Up @@ -111,6 +112,7 @@ generated_assembly_info(
deps = [
"@json.net//:Newtonsoft.Json",
"@identitymodel.tokens//:Microsoft.IdentityModel.Tokens",
"@identitymodel.logging//:Microsoft.IdentityModel.Logging",
],
) for standard_version in SUPPORTED_NET_STANDARD_VERSIONS]

Expand Down Expand Up @@ -149,6 +151,8 @@ generated_assembly_info(
deps = [
"@json.net//:Newtonsoft.Json",
"@identitymodel.tokens//:Microsoft.IdentityModel.Tokens",
"@identitymodel.logging//:Microsoft.IdentityModel.Logging",
"@identitymodel.abstractions//:Microsoft.IdentityModel.Abstractions",
"@net//:System",
"@net//:System.Core",
"@net//:System.Data",
Expand Down Expand Up @@ -196,6 +200,7 @@ generated_assembly_info(
deps = [
"@json.net//:Newtonsoft.Json",
"@identitymodel.tokens//:Microsoft.IdentityModel.Tokens",
"@identitymodel.logging//:Microsoft.IdentityModel.Logging",
],
) for standard_version in SUPPORTED_NET_STANDARD_VERSIONS]

Expand All @@ -207,6 +212,7 @@ generated_assembly_info(
deps = [
"@json.net//:Newtonsoft.Json",
"@identitymodel.tokens//:Microsoft.IdentityModel.Tokens",
"@identitymodel.logging//:Microsoft.IdentityModel.Logging",
],
) for framework in SUPPORTED_NET_FRAMEWORKS]

Expand All @@ -219,6 +225,7 @@ generated_assembly_info(
deps = [
"@json.net//:Newtonsoft.Json",
"@identitymodel.tokens//:Microsoft.IdentityModel.Tokens",
"@identitymodel.logging//:Microsoft.IdentityModel.Logging",
],
) for framework in SUPPORTED_NET_FRAMEWORKS]

Expand Down
12 changes: 12 additions & 0 deletions dotnet/workspace.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ def selenium_register_dotnet():
sha256 = "9ef0cd1a0f36716e20a39a7d612292c1ea0b1a6f196395db0c7552518ac0f0bd",
)

import_nuget_package(
name = "identitymodel.logging",
file = "third_party/dotnet/nuget/packages/microsoft.identitymodel.logging.6.19.0.nupkg",
sha256 = "0f0c738bf4ce27c5b4f6a441ce067a888b3e3b2a6783517b5d8caa46eec4516a",
)

import_nuget_package(
name = "identitymodel.abstractions",
file = "third_party/dotnet/nuget/packages/microsoft.identitymodel.abstractions.6.19.0.nupkg",
sha256 = "eaa7f4995eb68edf7b6d1586a3a35027f6f9252ab82cb1478cec347a42895ee0",
)

import_nuget_package(
name = "json.net",
file = "third_party/dotnet/nuget/packages/newtonsoft.json.12.0.3.nupkg",
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit 21a39ab

Please sign in to comment.