├── .config └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOFCONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── codeql-analysis.yml │ ├── dependabot-cake.yml │ ├── publishDocs.yml │ └── release-notes.yml ├── .gitignore ├── .vscode └── settings.json ├── GitReleaseManager.yaml ├── LICENSE ├── Readme.md ├── config.wyam ├── config.wyam.hash ├── docs ├── input │ ├── assets │ │ ├── css │ │ │ └── override.css │ │ ├── images │ │ │ └── clippy.svg │ │ └── js │ │ │ ├── anchor.min.js │ │ │ └── clipboard.min.js │ ├── docs │ │ ├── index.cshtml │ │ └── usage │ │ │ ├── contributing.md │ │ │ ├── index.cshtml │ │ │ └── intro.md │ ├── index.cshtml │ └── tasks │ │ ├── Analyze.json │ │ ├── AppVeyor.json │ │ ├── Build.json │ │ ├── Clean-Documentation.json │ │ ├── Clean.json │ │ ├── Clear-AppVeyor-Cache.json │ │ ├── ClearCache.json │ │ ├── Create-Chocolatey-Packages.json │ │ ├── Create-NuGet-Packages.json │ │ ├── Create-Nuget-Package.json │ │ ├── Create-Release-Notes.json │ │ ├── Default.json │ │ ├── Deploy-Graph-Documentation.json │ │ ├── Deploy-Graph-Web-Files.json │ │ ├── DotNetCore-Build.json │ │ ├── DotNetCore-Pack.json │ │ ├── DotNetCore-Restore.json │ │ ├── DotNetCore-Test.json │ │ ├── DupFinder.json │ │ ├── Export-Release-Notes.json │ │ ├── Force-Publish-Documentation.json │ │ ├── InspectCode.json │ │ ├── Install-OpenCover.json │ │ ├── Install-ReportGenerator.json │ │ ├── Install-ReportUnit.json │ │ ├── Package.json │ │ ├── Preview-Documentation.json │ │ ├── Preview.json │ │ ├── Print-AppVeyor-Environment-Variables.json │ │ ├── Publish-Chocolatey-Packages.json │ │ ├── Publish-Documentation.json │ │ ├── Publish-GitHub-Release.json │ │ ├── Publish-MyGet-Packages.json │ │ ├── Publish-Nuget-Packages.json │ │ ├── PublishDocs.json │ │ ├── ReleaseNotes.json │ │ ├── Restore.json │ │ ├── Run-Integration-Tests.json │ │ ├── Show-Info.json │ │ ├── Test-Fixie.json │ │ ├── Test-MSTest.json │ │ ├── Test-NUnit.json │ │ ├── Test-VSTest.json │ │ ├── Test-xUnit.json │ │ ├── Test.json │ │ ├── Transifex-Pull-Translations.json │ │ ├── Transifex-Push-SourceFiles.json │ │ ├── Transifex-Push-Translations.json │ │ ├── Transifex-Setup.json │ │ ├── Upload-AppVeyor-Artifacts.json │ │ ├── Upload-Codecov-Report.json │ │ ├── Upload-Coverage-Report.json │ │ ├── Upload-Coveralls-Report.json │ │ └── tasklist.json └── packages.xml ├── recipe.cake └── src ├── Cake.Incubator.Tests ├── AssertExtensionsTests.cs ├── Cake.Incubator.Tests.csproj ├── Cake.Incubator.Tests.csproj.DotSettings ├── CustomProjectParserTests.cs ├── DotNetBuildSettingsExtensionsTests.cs ├── EnumerableExtensionsTests.cs ├── Fakes │ ├── CakeFixture.cs │ └── TestingExtensions.cs ├── FilePathExtensionTests.cs ├── GlobbingExtensionsTests.cs ├── LoggingExtensionsTests.cs ├── NetCoreProjectParserExtensionsTests.cs ├── NetFrameworkParserExtensionTests.cs ├── ProjectFileHelpers.cs ├── ProjectParserExtensionTests.cs ├── SolutionParserExtensionsTests.cs ├── StringExtensionsTests.cs └── sampleprojects │ ├── Cake_Unity_FSharp_Tests_fsproj.xml │ ├── CsProjValidFSUnitTestFile.xml │ ├── CsProjValidFixieTestFile.xml │ ├── CsProjValidNUnitTestFile.xml │ ├── CsProj_AbsolutePath.xml │ ├── CsProj_AppendTargetFramework.xml │ ├── CsProj_AppendTargetFrameworkWithOutputPath.xml │ ├── CsProj_ConditionReference_ValidFile.xml │ ├── CsProj_InvalidFile.xml │ ├── CsProj_NoAppendTargetFramework.xml │ ├── CsProj_NoAppendTargetFrameworkWithOutputPath.xml │ ├── CsProj_ValidFile.xml │ ├── CsProj_ValidMSTestFile.xml │ ├── CsProj_ValidWebApplication.xml │ ├── CsProj_ValidXUnitTestFile.xml │ ├── Microsoft.Build.xsd │ ├── VS2017_CsProj_NetCoreDefault.xml │ ├── VS2017_CsProj_NetStandard_ValidFile.xml │ └── VS2017_CsProj_ValidFile.xml ├── Cake.Incubator.sln ├── Cake.Incubator.sln.DotSettings ├── Cake.Incubator ├── AssertExtensions.cs ├── Cake.Incubator.csproj ├── DotNetBuildSettingsExtensions.cs ├── DotNetTestExtensions.cs ├── EnumerableExtensions.cs ├── FileExtensions.cs ├── FilePathExtensions.cs ├── FileSystemExtensions.cs ├── GlobbingExtensions.cs ├── LoggingExtensions.cs ├── NamespaceDoc.cs ├── Project │ ├── BuildTarget.cs │ ├── BuildTargetExecutable.cs │ ├── CustomProjectFile.cs │ ├── CustomProjectParserResult.cs │ ├── DotNetCliToolReference.cs │ ├── NetCoreProject.cs │ ├── NetFrameworkProjectProperties.cs │ ├── PackageReference.cs │ ├── ProjectParserExtensions.cs │ ├── ProjectPath.cs │ ├── ProjectTypes.cs │ ├── ProjectXElement.cs │ └── RuntimeOptions.cs ├── ProjectPathExtensions.cs ├── SolutionParserExtensions.cs ├── StringExtensions.cs ├── XDocumentExtensions.cs └── XElementExtensions.cs ├── Directory.Build.targets └── SolutionInfo.cs /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOFCONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.github/CODEOFCONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-cake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.github/workflows/dependabot-cake.yml -------------------------------------------------------------------------------- /.github/workflows/publishDocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.github/workflows/publishDocs.yml -------------------------------------------------------------------------------- /.github/workflows/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.github/workflows/release-notes.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /GitReleaseManager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/GitReleaseManager.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/Readme.md -------------------------------------------------------------------------------- /config.wyam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/config.wyam -------------------------------------------------------------------------------- /config.wyam.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/config.wyam.hash -------------------------------------------------------------------------------- /docs/input/assets/css/override.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/assets/css/override.css -------------------------------------------------------------------------------- /docs/input/assets/images/clippy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/assets/images/clippy.svg -------------------------------------------------------------------------------- /docs/input/assets/js/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/assets/js/anchor.min.js -------------------------------------------------------------------------------- /docs/input/assets/js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/assets/js/clipboard.min.js -------------------------------------------------------------------------------- /docs/input/docs/index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/docs/index.cshtml -------------------------------------------------------------------------------- /docs/input/docs/usage/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/docs/usage/contributing.md -------------------------------------------------------------------------------- /docs/input/docs/usage/index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/docs/usage/index.cshtml -------------------------------------------------------------------------------- /docs/input/docs/usage/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/docs/usage/intro.md -------------------------------------------------------------------------------- /docs/input/index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/index.cshtml -------------------------------------------------------------------------------- /docs/input/tasks/Analyze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Analyze.json -------------------------------------------------------------------------------- /docs/input/tasks/AppVeyor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/AppVeyor.json -------------------------------------------------------------------------------- /docs/input/tasks/Build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Build.json -------------------------------------------------------------------------------- /docs/input/tasks/Clean-Documentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Clean-Documentation.json -------------------------------------------------------------------------------- /docs/input/tasks/Clean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Clean.json -------------------------------------------------------------------------------- /docs/input/tasks/Clear-AppVeyor-Cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Clear-AppVeyor-Cache.json -------------------------------------------------------------------------------- /docs/input/tasks/ClearCache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/ClearCache.json -------------------------------------------------------------------------------- /docs/input/tasks/Create-Chocolatey-Packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Create-Chocolatey-Packages.json -------------------------------------------------------------------------------- /docs/input/tasks/Create-NuGet-Packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Create-NuGet-Packages.json -------------------------------------------------------------------------------- /docs/input/tasks/Create-Nuget-Package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Create-Nuget-Package.json -------------------------------------------------------------------------------- /docs/input/tasks/Create-Release-Notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Create-Release-Notes.json -------------------------------------------------------------------------------- /docs/input/tasks/Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Default.json -------------------------------------------------------------------------------- /docs/input/tasks/Deploy-Graph-Documentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Deploy-Graph-Documentation.json -------------------------------------------------------------------------------- /docs/input/tasks/Deploy-Graph-Web-Files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Deploy-Graph-Web-Files.json -------------------------------------------------------------------------------- /docs/input/tasks/DotNetCore-Build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/DotNetCore-Build.json -------------------------------------------------------------------------------- /docs/input/tasks/DotNetCore-Pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/DotNetCore-Pack.json -------------------------------------------------------------------------------- /docs/input/tasks/DotNetCore-Restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/DotNetCore-Restore.json -------------------------------------------------------------------------------- /docs/input/tasks/DotNetCore-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/DotNetCore-Test.json -------------------------------------------------------------------------------- /docs/input/tasks/DupFinder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/DupFinder.json -------------------------------------------------------------------------------- /docs/input/tasks/Export-Release-Notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Export-Release-Notes.json -------------------------------------------------------------------------------- /docs/input/tasks/Force-Publish-Documentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Force-Publish-Documentation.json -------------------------------------------------------------------------------- /docs/input/tasks/InspectCode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/InspectCode.json -------------------------------------------------------------------------------- /docs/input/tasks/Install-OpenCover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Install-OpenCover.json -------------------------------------------------------------------------------- /docs/input/tasks/Install-ReportGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Install-ReportGenerator.json -------------------------------------------------------------------------------- /docs/input/tasks/Install-ReportUnit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Install-ReportUnit.json -------------------------------------------------------------------------------- /docs/input/tasks/Package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Package.json -------------------------------------------------------------------------------- /docs/input/tasks/Preview-Documentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Preview-Documentation.json -------------------------------------------------------------------------------- /docs/input/tasks/Preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Preview.json -------------------------------------------------------------------------------- /docs/input/tasks/Print-AppVeyor-Environment-Variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Print-AppVeyor-Environment-Variables.json -------------------------------------------------------------------------------- /docs/input/tasks/Publish-Chocolatey-Packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Publish-Chocolatey-Packages.json -------------------------------------------------------------------------------- /docs/input/tasks/Publish-Documentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Publish-Documentation.json -------------------------------------------------------------------------------- /docs/input/tasks/Publish-GitHub-Release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Publish-GitHub-Release.json -------------------------------------------------------------------------------- /docs/input/tasks/Publish-MyGet-Packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Publish-MyGet-Packages.json -------------------------------------------------------------------------------- /docs/input/tasks/Publish-Nuget-Packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Publish-Nuget-Packages.json -------------------------------------------------------------------------------- /docs/input/tasks/PublishDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/PublishDocs.json -------------------------------------------------------------------------------- /docs/input/tasks/ReleaseNotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/ReleaseNotes.json -------------------------------------------------------------------------------- /docs/input/tasks/Restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Restore.json -------------------------------------------------------------------------------- /docs/input/tasks/Run-Integration-Tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Run-Integration-Tests.json -------------------------------------------------------------------------------- /docs/input/tasks/Show-Info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Show-Info.json -------------------------------------------------------------------------------- /docs/input/tasks/Test-Fixie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Test-Fixie.json -------------------------------------------------------------------------------- /docs/input/tasks/Test-MSTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Test-MSTest.json -------------------------------------------------------------------------------- /docs/input/tasks/Test-NUnit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Test-NUnit.json -------------------------------------------------------------------------------- /docs/input/tasks/Test-VSTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Test-VSTest.json -------------------------------------------------------------------------------- /docs/input/tasks/Test-xUnit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Test-xUnit.json -------------------------------------------------------------------------------- /docs/input/tasks/Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Test.json -------------------------------------------------------------------------------- /docs/input/tasks/Transifex-Pull-Translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Transifex-Pull-Translations.json -------------------------------------------------------------------------------- /docs/input/tasks/Transifex-Push-SourceFiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Transifex-Push-SourceFiles.json -------------------------------------------------------------------------------- /docs/input/tasks/Transifex-Push-Translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Transifex-Push-Translations.json -------------------------------------------------------------------------------- /docs/input/tasks/Transifex-Setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Transifex-Setup.json -------------------------------------------------------------------------------- /docs/input/tasks/Upload-AppVeyor-Artifacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Upload-AppVeyor-Artifacts.json -------------------------------------------------------------------------------- /docs/input/tasks/Upload-Codecov-Report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Upload-Codecov-Report.json -------------------------------------------------------------------------------- /docs/input/tasks/Upload-Coverage-Report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Upload-Coverage-Report.json -------------------------------------------------------------------------------- /docs/input/tasks/Upload-Coveralls-Report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/Upload-Coveralls-Report.json -------------------------------------------------------------------------------- /docs/input/tasks/tasklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/input/tasks/tasklist.json -------------------------------------------------------------------------------- /docs/packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/docs/packages.xml -------------------------------------------------------------------------------- /recipe.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/recipe.cake -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/AssertExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/AssertExtensionsTests.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/Cake.Incubator.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/Cake.Incubator.Tests.csproj -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/Cake.Incubator.Tests.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/Cake.Incubator.Tests.csproj.DotSettings -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/CustomProjectParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/CustomProjectParserTests.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/DotNetBuildSettingsExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/DotNetBuildSettingsExtensionsTests.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/EnumerableExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/EnumerableExtensionsTests.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/Fakes/CakeFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/Fakes/CakeFixture.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/Fakes/TestingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/Fakes/TestingExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/FilePathExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/FilePathExtensionTests.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/GlobbingExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/GlobbingExtensionsTests.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/LoggingExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/LoggingExtensionsTests.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/NetCoreProjectParserExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/NetCoreProjectParserExtensionsTests.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/NetFrameworkParserExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/NetFrameworkParserExtensionTests.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/ProjectFileHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/ProjectFileHelpers.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/ProjectParserExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/ProjectParserExtensionTests.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/SolutionParserExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/SolutionParserExtensionsTests.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/StringExtensionsTests.cs -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/Cake_Unity_FSharp_Tests_fsproj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/Cake_Unity_FSharp_Tests_fsproj.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProjValidFSUnitTestFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProjValidFSUnitTestFile.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProjValidFixieTestFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProjValidFixieTestFile.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProjValidNUnitTestFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProjValidNUnitTestFile.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProj_AbsolutePath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProj_AbsolutePath.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProj_AppendTargetFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProj_AppendTargetFramework.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProj_AppendTargetFrameworkWithOutputPath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProj_AppendTargetFrameworkWithOutputPath.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProj_ConditionReference_ValidFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProj_ConditionReference_ValidFile.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProj_InvalidFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProj_InvalidFile.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProj_NoAppendTargetFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProj_NoAppendTargetFramework.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProj_NoAppendTargetFrameworkWithOutputPath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProj_NoAppendTargetFrameworkWithOutputPath.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProj_ValidFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProj_ValidFile.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProj_ValidMSTestFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProj_ValidMSTestFile.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProj_ValidWebApplication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProj_ValidWebApplication.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/CsProj_ValidXUnitTestFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/CsProj_ValidXUnitTestFile.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/Microsoft.Build.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/Microsoft.Build.xsd -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/VS2017_CsProj_NetCoreDefault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/VS2017_CsProj_NetCoreDefault.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/VS2017_CsProj_NetStandard_ValidFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/VS2017_CsProj_NetStandard_ValidFile.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.Tests/sampleprojects/VS2017_CsProj_ValidFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.Tests/sampleprojects/VS2017_CsProj_ValidFile.xml -------------------------------------------------------------------------------- /src/Cake.Incubator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.sln -------------------------------------------------------------------------------- /src/Cake.Incubator.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator.sln.DotSettings -------------------------------------------------------------------------------- /src/Cake.Incubator/AssertExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/AssertExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Cake.Incubator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Cake.Incubator.csproj -------------------------------------------------------------------------------- /src/Cake.Incubator/DotNetBuildSettingsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/DotNetBuildSettingsExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/DotNetTestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/DotNetTestExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/FileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/FileExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/FilePathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/FilePathExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/FileSystemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/FileSystemExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/GlobbingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/GlobbingExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/LoggingExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/NamespaceDoc.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/BuildTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/BuildTarget.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/BuildTargetExecutable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/BuildTargetExecutable.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/CustomProjectFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/CustomProjectFile.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/CustomProjectParserResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/CustomProjectParserResult.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/DotNetCliToolReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/DotNetCliToolReference.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/NetCoreProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/NetCoreProject.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/NetFrameworkProjectProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/NetFrameworkProjectProperties.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/PackageReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/PackageReference.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/ProjectParserExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/ProjectParserExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/ProjectPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/ProjectPath.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/ProjectTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/ProjectTypes.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/ProjectXElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/ProjectXElement.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/Project/RuntimeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/Project/RuntimeOptions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/ProjectPathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/ProjectPathExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/SolutionParserExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/SolutionParserExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/StringExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/XDocumentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/XDocumentExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Incubator/XElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Cake.Incubator/XElementExtensions.cs -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/SolutionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-contrib/Cake.Incubator/HEAD/src/SolutionInfo.cs --------------------------------------------------------------------------------