├── .gitattributes ├── .gitignore ├── BenchBuild.sln ├── BenchBuild ├── BenchBuild.csproj ├── Program.cs └── ProjectGenerator.cs ├── BuildServer.Tasks ├── BuildServer.Tasks.csproj ├── CacheBuilder.cs └── SpookyHash.cs ├── BuildServer ├── AssemblyGroup.cs ├── BuildServer.csproj ├── Builder.cs ├── ConfigurationHelper.cs ├── DirectoryHelper.cs ├── MsBuildHelper.cs ├── ProjectGroup.cs ├── ProjectGroupExtensions.cs ├── ProjectState.cs ├── ProjectsProvider.cs └── ResultsHelper.cs ├── doc └── readme.md └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/.gitignore -------------------------------------------------------------------------------- /BenchBuild.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BenchBuild.sln -------------------------------------------------------------------------------- /BenchBuild/BenchBuild.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BenchBuild/BenchBuild.csproj -------------------------------------------------------------------------------- /BenchBuild/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BenchBuild/Program.cs -------------------------------------------------------------------------------- /BenchBuild/ProjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BenchBuild/ProjectGenerator.cs -------------------------------------------------------------------------------- /BuildServer.Tasks/BuildServer.Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer.Tasks/BuildServer.Tasks.csproj -------------------------------------------------------------------------------- /BuildServer.Tasks/CacheBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer.Tasks/CacheBuilder.cs -------------------------------------------------------------------------------- /BuildServer.Tasks/SpookyHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer.Tasks/SpookyHash.cs -------------------------------------------------------------------------------- /BuildServer/AssemblyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer/AssemblyGroup.cs -------------------------------------------------------------------------------- /BuildServer/BuildServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer/BuildServer.csproj -------------------------------------------------------------------------------- /BuildServer/Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer/Builder.cs -------------------------------------------------------------------------------- /BuildServer/ConfigurationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer/ConfigurationHelper.cs -------------------------------------------------------------------------------- /BuildServer/DirectoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer/DirectoryHelper.cs -------------------------------------------------------------------------------- /BuildServer/MsBuildHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer/MsBuildHelper.cs -------------------------------------------------------------------------------- /BuildServer/ProjectGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer/ProjectGroup.cs -------------------------------------------------------------------------------- /BuildServer/ProjectGroupExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer/ProjectGroupExtensions.cs -------------------------------------------------------------------------------- /BuildServer/ProjectState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer/ProjectState.cs -------------------------------------------------------------------------------- /BuildServer/ProjectsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer/ProjectsProvider.cs -------------------------------------------------------------------------------- /BuildServer/ResultsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/BuildServer/ResultsHelper.cs -------------------------------------------------------------------------------- /doc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/doc/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/XelaBuild/HEAD/readme.md --------------------------------------------------------------------------------