Skip to content

Commit

Permalink
Changeing build scrip to build rlease
Browse files Browse the repository at this point in the history
  • Loading branch information
rcasady616 committed Nov 19, 2016
1 parent d27b8f5 commit 8ae24c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#tool "nuget:?package=NUnit.ConsoleRunner"

var configuration="Debug";
var configuration="Release";
var solution="./Selenium.WebDriver.Equip.sln";
var testProjectDir="./Selenium.WebDriver.Equip.Tests/bin/" + configuration;
var projProjectDir="./Selenium.WebDriver.Equip/bin/" + configuration;
Expand Down Expand Up @@ -35,7 +35,7 @@ Task("Test_s")
.Does(()=>{
NUnit3(testProjectDir + "/*.Tests.dll",
new NUnit3Settings {
Test = "GetSauceTest",
Test = "CheckBoxUnChecked",
WorkingDirectory = testProjectDir
});
});
Expand All @@ -61,7 +61,7 @@ Task("Package")
var nuGetPackSettings = new NuGetPackSettings {
Version = assemblyInfo.AssemblyFileVersion,
Copyright = "EQUIP 2016",
// ReleaseNotes = new [] {"Bug fixes", "Issue fixes", "Typos"},
// ReleaseNotes = new [] {"Bug fixes", "Issue fixes", "Typos"},
OutputDirectory = "./nuget"
};
Expand Down

0 comments on commit 8ae24c6

Please sign in to comment.