mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 19:46:07 +00:00
ffdf688e19
* Dont hardcode linksources for linux builds * split ConventionTests into their own build task, since this is how it was in FAKE previously * update contributing doc after change to CAKE * minor doc updates * fix bash linksources argument * remove all these old packages files * use forward slashes when referring to bash script * use Target parameter name for the PowerShell build script * be consistent when referring to PowerShell build script * Be even moar consistent
12 lines
369 B
C#
12 lines
369 B
C#
using Cake.Core.IO;
|
|
|
|
public class Project
|
|
{
|
|
public string Name { get; set; }
|
|
public FilePath Path { get; set; }
|
|
public bool Publish { get; set; }
|
|
public bool UnitTests { get; set; }
|
|
public bool ConventionTests { get; set; }
|
|
public bool IntegrationTests { get; set; }
|
|
public bool IsTests => UnitTests || ConventionTests || IntegrationTests;
|
|
} |