Files
octokit.net/build/Utilities/Project.cs
Ryan Gribble ffdf688e19 Final tidyups for dotnetcore (#1600)
* 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
2017-05-04 20:32:22 +10:00

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;
}