Skip to content

Commit

Permalink
Fix .Net build
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Sep 22, 2015
1 parent 2650556 commit a057517
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions dotnet/src/webdriver/BUCK
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
csharp_library(
name = 'webdriver',
out = 'WebDriver.dll',
dll_name = 'WebDriver.dll',
framework_ver = 'net40',
srcs = glob(['**/*.cs']),
resources = {
'//javascript/firefox-driver:webdriver' : 'WebDriver.FirefoxExt.zip',
'//javascript/firefox-driver:webdriver_prefs' : 'WebDriver.FirefoxPreferences',
# '//cpp:noblur' : 'WebDriver.FirefoxNoFocus.x86.dll',
# '//cpp:noblur64' : 'WebDriver.FirefoxNoFocus.x64.dll'
'WebDriver.FirefoxExt.zip': '//javascript/firefox-driver:webdriver',
'WebDriver.FirefoxExt.zip': '//javascript/firefox-driver:webdriver',
'WebDriver.FirefoxPreferences': '//javascript/firefox-driver:webdriver_prefs',
# 'WebDriver.FirefoxNoFocus.x86.dll': '//cpp:noblur',
# 'WebDriver.FirefoxNoFocus.x64.dll': '//cpp:noblur64',
},
deps = [
'System.dll',
Expand All @@ -18,3 +19,4 @@ csharp_library(
'//third_party/dotnet/json-net-6.0r2/Net40:json'
],
)

0 comments on commit a057517

Please sign in to comment.