-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating .NET test dependency from FryProxy to BenderProxy
The BenderProxy project is nothing more than a renamed and properly packaged version of the FryProxy fork we were using previously. Attempts to contact the owner of FryProxy through multiple channels concerning incorporating the dependency removal changes we require, so the fork has now been reversioned and published under another name. The package has been published to NuGet, as Bazel does not currently handle checked-in dependencies.
- Loading branch information
Showing
7 changed files
with
38 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
exports_files([ | ||
"newtonsoft.json.bzl", | ||
"benderproxy.bzl", | ||
"castle.core.bzl", | ||
"moq.bzl", | ||
"newtonsoft.json.bzl", | ||
"nunit.bzl", | ||
"castle.core.bzl", | ||
"system.threading.tasks.extensions.bzl" | ||
]) |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package(default_visibility = [ "//visibility:public" ]) | ||
load("@io_bazel_rules_dotnet//dotnet:defs.bzl", "net_import_library", "core_import_library") | ||
|
||
net_import_library( | ||
name = "net45", | ||
src = "lib/net45/BenderProxy.dll", | ||
) | ||
|
||
net_import_library( | ||
name = "net46", | ||
src = "lib/net46/BenderProxy.dll", | ||
) | ||
|
||
net_import_library( | ||
name = "net47", | ||
src = "lib/net47/BenderProxy.dll", | ||
) | ||
|
||
core_import_library( | ||
name = "netcore", | ||
src = "lib/netstandard15/BenderProxy.dll" | ||
) |
Binary file not shown.