Skip to content

Commit

Permalink
(GH-17) Added new variables to setup.cake
Browse files Browse the repository at this point in the history
  • Loading branch information
gep13 committed Aug 27, 2016
1 parent a9524cf commit eb38e10
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.cake
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ private static string twitterConsumerKeyVariable = "TWITTER_CONSUMER_KEY";
private static string twitterConsumerSecretVariable = "TWITTER_CONSUMER_SECRET";
private static string twitterAccessTokenVariable = "TWITTER_ACCESS_TOKEN";
private static string twitterAccessTokenSecretVariable = "TWITTER_ACCESS_TOKEN_SECRET";
private static string appVeyorApiTokenVariable = "APPVEYOR_API_TOKEN";
private static string coverallsRepoTokenVariable = "COVERALLS_REPO_TOKEN";

///////////////////////////////////////////////////////////////////////////////
// BUILD ACTIONS
Expand All @@ -38,6 +40,8 @@ var title = "Cake.Tfx";
var resharperSettingsFileName = "Cake.Tfx.sln.DotSettings";
var repositoryOwner = "cake-contrib";
var repositoryName = "Cake.Tfx";
var appVeyorAccountName = "cakecontrib";
var appVeyorProjectSlug = "cake-tfx";

// NOTE: Only populate this, if required, but leave as is otherwise.
var dupFinderExcludePattern = new string[] { rootDirectoryPath + "/Source/Cake.Tfx.Tests/*.cs" };
Expand All @@ -48,6 +52,7 @@ var dupFinderExcludePattern = new string[] { rootDirectoryPath + "/Source/Cake

#l .\Tools\gep13.DefaultBuild\Content\appveyor.cake
#l .\Tools\gep13.DefaultBuild\Content\chocolatey.cake
#l .\Tools\gep13.DefaultBuild\Content\coveralls.cake
#l .\Tools\gep13.DefaultBuild\Content\credentials.cake
#l .\Tools\gep13.DefaultBuild\Content\gitreleasemanager.cake
#l .\Tools\gep13.DefaultBuild\Content\gitter.cake
Expand Down

0 comments on commit eb38e10

Please sign in to comment.