├── .appveyor.yml ├── .config └── dotnet-tools.json ├── .editorconfig ├── .github └── workflows │ ├── build.yml │ ├── posixbuild.yml │ └── release-notes.yml ├── .gitignore ├── GitReleaseManager.yaml ├── LICENSE ├── README.md ├── asset ├── Cake.Bakery.cs ├── Cake.Bakery.exe ├── Cake.Bakery.md └── cakebuild.snk ├── cake.config ├── global.json ├── nuspec ├── Cake.Bakery.nuspec ├── cake-medium.png └── chocolatey │ ├── Cake-Bakery.portable.nuspec │ └── VERIFICATION.txt ├── recipe.cake ├── signclient.filter ├── signclient.json ├── src ├── Cake.Bakery.Tests │ ├── Cake.Bakery.Tests.csproj │ └── Unit │ │ └── Arguments │ │ └── ArgumentParserTests.cs ├── Cake.Bakery.sln ├── Cake.Bakery.sln.DotSettings ├── Cake.Bakery │ ├── Arguments │ │ └── ArgumentParser.cs │ ├── BakeryModule.cs │ ├── CacheModule.cs │ ├── Cake.Bakery.csproj │ ├── Composition │ │ ├── Activator.cs │ │ ├── Activators │ │ │ ├── CachingActivator.cs │ │ │ ├── InstanceActivator.cs │ │ │ └── ReflectionActivator.cs │ │ ├── ComponentRegistration.cs │ │ ├── ComponentRegistry.cs │ │ ├── Container.cs │ │ ├── ContainerBuilder.cs │ │ ├── ContainerExtensions.cs │ │ ├── ContainerRegistrar.cs │ │ ├── ContainerResolver.cs │ │ └── RegistrationBuilder.cs │ ├── Constants.cs │ ├── Diagnostics │ │ ├── CakeLog.cs │ │ ├── Logger.cs │ │ └── LoggerProvider.cs │ ├── Polyfill │ │ └── EnvironmentHelper.cs │ ├── Program.cs │ └── Scripting │ │ ├── CachingCakeAliasGenerator.cs │ │ ├── CachingLoadDirectiveProvider.cs │ │ ├── CachingScriptAliasFinder.cs │ │ ├── CachingScriptProcessor.cs │ │ ├── CakeScriptAliasComparer.cs │ │ ├── LoadReferenceComparer.cs │ │ └── PackageReferenceComparer.cs ├── Cake.Scripting.Abstractions │ ├── Cake.Scripting.Abstractions.csproj │ ├── IScriptGenerationService.cs │ └── Models │ │ ├── CakeScript.cs │ │ ├── FileChange.cs │ │ ├── LineChange.cs │ │ └── ScriptHost.cs ├── Cake.Scripting.Tests │ ├── Cake.Scripting.Tests.csproj │ ├── Data │ │ ├── CakeMethodAliasGeneratorData.cs │ │ ├── Expected │ │ │ ├── Methods │ │ │ │ ├── Generic_ExtensionMethod │ │ │ │ ├── Generic_ExtensionMethodWithGenericOutParameter │ │ │ │ ├── Generic_ExtensionMethodWithGenericReturnValue │ │ │ │ ├── Generic_ExtensionMethodWithGenericReturnValueAndTypeParamConstraints │ │ │ │ ├── Generic_ExtensionMethodWithParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithArrayParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithGenericExpressionArrayParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithGenericExpressionParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithGenericExpressionParamsArrayParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithGenericOutParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithGenericParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithNoParameters │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalBooleanParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalCharParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalDecimalParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalEnumParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalNullableBooleanParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalNullableCharParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalNullableDecimalParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalNullableDoubleParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalNullableEnumParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalNullableLongParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalNullableTParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalObjectParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithOptionalStringParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithParameterArray │ │ │ │ ├── NonGeneric_ExtensionMethodWithReservedKeywordParameter │ │ │ │ ├── NonGeneric_ExtensionMethodWithReturnValue │ │ │ │ ├── Obsolete_ExplicitError_WithMessage │ │ │ │ ├── Obsolete_ExplicitWarning_WithMessage │ │ │ │ ├── Obsolete_ImplicitWarning_NoMessage │ │ │ │ └── Obsolete_ImplicitWarning_WithMessage │ │ │ └── Properties │ │ │ │ ├── Cached_Obsolete_ExplicitError_WithMessage │ │ │ │ ├── Cached_Obsolete_ExplicitWarning_WithMessage │ │ │ │ ├── Cached_Obsolete_ImplicitWarning_NoMessage │ │ │ │ ├── Cached_Obsolete_ImplicitWarning_WithMessage │ │ │ │ ├── Cached_Reference_Type │ │ │ │ ├── Cached_Value_Type │ │ │ │ ├── NonCached_Obsolete_ExplicitError_WithMessage │ │ │ │ ├── NonCached_Obsolete_ExplicitWarning_WithMessage │ │ │ │ ├── NonCached_Obsolete_ImplicitWarning_NoMessage │ │ │ │ ├── NonCached_Obsolete_ImplicitWarning_WithMessage │ │ │ │ └── NonCached_Value_Type │ │ └── PropertyAliasGeneratorData.cs │ ├── Extensions │ │ ├── FileSystemExtensions.cs │ │ └── StringExtensions.cs │ ├── Fixtures │ │ ├── BufferedFileSystemFixture.cs │ │ ├── CakeAliasGeneratorFixture.cs │ │ ├── CakeMethodAliasGeneratorFixture.cs │ │ └── CakePropertyAliasGeneratorFixture.cs │ └── Unit │ │ ├── CodeGen │ │ ├── CakeMethodAliasGeneratorTests.cs │ │ ├── CakePropertyAliasGeneratorTests.cs │ │ └── CakeScriptAliasFinderTests.cs │ │ └── IO │ │ └── BufferedFileSystemTests.cs ├── Cake.Scripting.Transport.Tests │ ├── Cake.Scripting.Transport.Tests.csproj │ ├── Data │ │ ├── UTF-8-demo.txt │ │ └── UTF-8-test.txt │ ├── Fixtures │ │ ├── Serialization │ │ │ ├── CakeScriptSerializerFixture.cs │ │ │ ├── FileChangeSerializerFixture.cs │ │ │ └── SerializerFixture.cs │ │ └── Tcp │ │ │ ├── InProcessServer.cs │ │ │ ├── ScriptGenerationService.cs │ │ │ └── TcpCommunicationFixture.cs │ └── Unit │ │ ├── Serialization │ │ ├── CakeScriptSerializerTests.cs │ │ └── FileChangeSerializerTests.cs │ │ └── Tcp │ │ └── ScriptGenerationClientTests.cs ├── Cake.Scripting.Transport │ ├── Cake.Scripting.Transport.csproj │ ├── Extensions │ │ ├── BinaryWriterExtensions.cs │ │ └── SocketExtensions.cs │ ├── Serialization │ │ ├── CakeScriptSerializer.cs │ │ ├── Constants.cs │ │ └── FileChangeSerializer.cs │ └── Tcp │ │ ├── Client │ │ ├── IScriptGenerationProcess.cs │ │ ├── ScriptGenerationClient.cs │ │ └── ScriptGenerationProcess.cs │ │ └── Server │ │ └── ScriptGenerationServer.cs ├── Cake.Scripting │ ├── Cake.Scripting.csproj │ ├── CodeGen │ │ ├── CakeScriptAlias.cs │ │ ├── CakeScriptAliasFinder.cs │ │ ├── CakeScriptGenerator.cs │ │ ├── Generators │ │ │ ├── CakeAliasGenerationHelper.cs │ │ │ ├── CakeAliasGenerator.cs │ │ │ ├── CakeMethodAliasGenerator.cs │ │ │ └── CakePropertyAliasGenerator.cs │ │ ├── ICakeAliasGenerator.cs │ │ ├── IScriptAliasFinder.cs │ │ └── IndentedTextWriter.cs │ ├── Constants.cs │ ├── Documentation │ │ ├── CRefGenerator.cs │ │ ├── CrefHelpers.cs │ │ └── DocumentationProvider.cs │ ├── Extensions │ │ ├── CustomAttributeProviderExtensions.cs │ │ ├── HashSetExtensions.cs │ │ ├── MethodDefinitionExtensions.cs │ │ └── TypeDefinitionExtensions.cs │ ├── IO │ │ ├── BufferedFile.cs │ │ ├── BufferedFileSystem.cs │ │ └── IBufferedFileSystem.cs │ ├── Reflection │ │ ├── Emitters │ │ │ ├── ParameterEmitOptions.cs │ │ │ ├── ParameterEmitter.cs │ │ │ ├── TypeEmitOptions.cs │ │ │ └── TypeEmitter.cs │ │ ├── GenericParameterSignature.cs │ │ ├── MethodSignature.cs │ │ ├── NamespaceSignature.cs │ │ ├── ParameterSignature.cs │ │ ├── PropertySignature.cs │ │ ├── ReferenceAssemblyResolver.cs │ │ └── TypeSignature.cs │ └── ScriptingModule.cs ├── Cake.ruleset ├── Directory.Build.targets ├── NuGet.config ├── Shared.props ├── Test.ruleset ├── stylecop.json └── xunit.runner.json └── tests └── integration ├── Cake.Bakery.Tests.Integration.csproj ├── Program.cs ├── addin.cake ├── cake.config └── helloworld.cake /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/posixbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/.github/workflows/posixbuild.yml -------------------------------------------------------------------------------- /.github/workflows/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/.github/workflows/release-notes.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/.gitignore -------------------------------------------------------------------------------- /GitReleaseManager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/GitReleaseManager.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/README.md -------------------------------------------------------------------------------- /asset/Cake.Bakery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/asset/Cake.Bakery.cs -------------------------------------------------------------------------------- /asset/Cake.Bakery.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/asset/Cake.Bakery.exe -------------------------------------------------------------------------------- /asset/Cake.Bakery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/asset/Cake.Bakery.md -------------------------------------------------------------------------------- /asset/cakebuild.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/asset/cakebuild.snk -------------------------------------------------------------------------------- /cake.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/cake.config -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/global.json -------------------------------------------------------------------------------- /nuspec/Cake.Bakery.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/nuspec/Cake.Bakery.nuspec -------------------------------------------------------------------------------- /nuspec/cake-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/nuspec/cake-medium.png -------------------------------------------------------------------------------- /nuspec/chocolatey/Cake-Bakery.portable.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/nuspec/chocolatey/Cake-Bakery.portable.nuspec -------------------------------------------------------------------------------- /nuspec/chocolatey/VERIFICATION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/nuspec/chocolatey/VERIFICATION.txt -------------------------------------------------------------------------------- /recipe.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/recipe.cake -------------------------------------------------------------------------------- /signclient.filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/signclient.filter -------------------------------------------------------------------------------- /signclient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/signclient.json -------------------------------------------------------------------------------- /src/Cake.Bakery.Tests/Cake.Bakery.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery.Tests/Cake.Bakery.Tests.csproj -------------------------------------------------------------------------------- /src/Cake.Bakery.Tests/Unit/Arguments/ArgumentParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery.Tests/Unit/Arguments/ArgumentParserTests.cs -------------------------------------------------------------------------------- /src/Cake.Bakery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery.sln -------------------------------------------------------------------------------- /src/Cake.Bakery.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery.sln.DotSettings -------------------------------------------------------------------------------- /src/Cake.Bakery/Arguments/ArgumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Arguments/ArgumentParser.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/BakeryModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/BakeryModule.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/CacheModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/CacheModule.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Cake.Bakery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Cake.Bakery.csproj -------------------------------------------------------------------------------- /src/Cake.Bakery/Composition/Activator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Composition/Activator.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Composition/Activators/CachingActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Composition/Activators/CachingActivator.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Composition/Activators/InstanceActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Composition/Activators/InstanceActivator.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Composition/Activators/ReflectionActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Composition/Activators/ReflectionActivator.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Composition/ComponentRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Composition/ComponentRegistration.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Composition/ComponentRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Composition/ComponentRegistry.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Composition/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Composition/Container.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Composition/ContainerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Composition/ContainerBuilder.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Composition/ContainerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Composition/ContainerExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Composition/ContainerRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Composition/ContainerRegistrar.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Composition/ContainerResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Composition/ContainerResolver.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Composition/RegistrationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Composition/RegistrationBuilder.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Constants.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Diagnostics/CakeLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Diagnostics/CakeLog.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Diagnostics/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Diagnostics/Logger.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Diagnostics/LoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Diagnostics/LoggerProvider.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Polyfill/EnvironmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Polyfill/EnvironmentHelper.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Program.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Scripting/CachingCakeAliasGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Scripting/CachingCakeAliasGenerator.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Scripting/CachingLoadDirectiveProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Scripting/CachingLoadDirectiveProvider.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Scripting/CachingScriptAliasFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Scripting/CachingScriptAliasFinder.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Scripting/CachingScriptProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Scripting/CachingScriptProcessor.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Scripting/CakeScriptAliasComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Scripting/CakeScriptAliasComparer.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Scripting/LoadReferenceComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Scripting/LoadReferenceComparer.cs -------------------------------------------------------------------------------- /src/Cake.Bakery/Scripting/PackageReferenceComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Bakery/Scripting/PackageReferenceComparer.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Abstractions/Cake.Scripting.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Abstractions/Cake.Scripting.Abstractions.csproj -------------------------------------------------------------------------------- /src/Cake.Scripting.Abstractions/IScriptGenerationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Abstractions/IScriptGenerationService.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Abstractions/Models/CakeScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Abstractions/Models/CakeScript.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Abstractions/Models/FileChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Abstractions/Models/FileChange.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Abstractions/Models/LineChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Abstractions/Models/LineChange.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Abstractions/Models/ScriptHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Abstractions/Models/ScriptHost.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Cake.Scripting.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Cake.Scripting.Tests.csproj -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/CakeMethodAliasGeneratorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/CakeMethodAliasGeneratorData.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/Generic_ExtensionMethod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/Generic_ExtensionMethod -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/Generic_ExtensionMethodWithGenericOutParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/Generic_ExtensionMethodWithGenericOutParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/Generic_ExtensionMethodWithGenericReturnValue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/Generic_ExtensionMethodWithGenericReturnValue -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/Generic_ExtensionMethodWithGenericReturnValueAndTypeParamConstraints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/Generic_ExtensionMethodWithGenericReturnValueAndTypeParamConstraints -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/Generic_ExtensionMethodWithParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/Generic_ExtensionMethodWithParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithArrayParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithArrayParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithGenericExpressionArrayParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithGenericExpressionArrayParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithGenericExpressionParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithGenericExpressionParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithGenericExpressionParamsArrayParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithGenericExpressionParamsArrayParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithGenericOutParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithGenericOutParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithGenericParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithGenericParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithNoParameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithNoParameters -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalBooleanParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalBooleanParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalCharParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalCharParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalDecimalParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalDecimalParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalEnumParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalEnumParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableBooleanParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableBooleanParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableCharParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableCharParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableDecimalParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableDecimalParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableDoubleParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableDoubleParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableEnumParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableEnumParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableLongParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableLongParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableTParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalNullableTParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalObjectParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalObjectParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalStringParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithOptionalStringParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithParameterArray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithParameterArray -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithReservedKeywordParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithReservedKeywordParameter -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithReturnValue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/NonGeneric_ExtensionMethodWithReturnValue -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/Obsolete_ExplicitError_WithMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/Obsolete_ExplicitError_WithMessage -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/Obsolete_ExplicitWarning_WithMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/Obsolete_ExplicitWarning_WithMessage -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/Obsolete_ImplicitWarning_NoMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/Obsolete_ImplicitWarning_NoMessage -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Methods/Obsolete_ImplicitWarning_WithMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Methods/Obsolete_ImplicitWarning_WithMessage -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Properties/Cached_Obsolete_ExplicitError_WithMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Properties/Cached_Obsolete_ExplicitError_WithMessage -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Properties/Cached_Obsolete_ExplicitWarning_WithMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Properties/Cached_Obsolete_ExplicitWarning_WithMessage -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Properties/Cached_Obsolete_ImplicitWarning_NoMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Properties/Cached_Obsolete_ImplicitWarning_NoMessage -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Properties/Cached_Obsolete_ImplicitWarning_WithMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Properties/Cached_Obsolete_ImplicitWarning_WithMessage -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Properties/Cached_Reference_Type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Properties/Cached_Reference_Type -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Properties/Cached_Value_Type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Properties/Cached_Value_Type -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Properties/NonCached_Obsolete_ExplicitError_WithMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Properties/NonCached_Obsolete_ExplicitError_WithMessage -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Properties/NonCached_Obsolete_ExplicitWarning_WithMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Properties/NonCached_Obsolete_ExplicitWarning_WithMessage -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Properties/NonCached_Obsolete_ImplicitWarning_NoMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Properties/NonCached_Obsolete_ImplicitWarning_NoMessage -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Properties/NonCached_Obsolete_ImplicitWarning_WithMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Properties/NonCached_Obsolete_ImplicitWarning_WithMessage -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/Expected/Properties/NonCached_Value_Type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/Expected/Properties/NonCached_Value_Type -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Data/PropertyAliasGeneratorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Data/PropertyAliasGeneratorData.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Extensions/FileSystemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Extensions/FileSystemExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Fixtures/BufferedFileSystemFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Fixtures/BufferedFileSystemFixture.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Fixtures/CakeAliasGeneratorFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Fixtures/CakeAliasGeneratorFixture.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Fixtures/CakeMethodAliasGeneratorFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Fixtures/CakeMethodAliasGeneratorFixture.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Fixtures/CakePropertyAliasGeneratorFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Fixtures/CakePropertyAliasGeneratorFixture.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Unit/CodeGen/CakeMethodAliasGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Unit/CodeGen/CakeMethodAliasGeneratorTests.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Unit/CodeGen/CakePropertyAliasGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Unit/CodeGen/CakePropertyAliasGeneratorTests.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Unit/CodeGen/CakeScriptAliasFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Unit/CodeGen/CakeScriptAliasFinderTests.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Tests/Unit/IO/BufferedFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Tests/Unit/IO/BufferedFileSystemTests.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport.Tests/Cake.Scripting.Transport.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport.Tests/Cake.Scripting.Transport.Tests.csproj -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport.Tests/Data/UTF-8-demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport.Tests/Data/UTF-8-demo.txt -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport.Tests/Data/UTF-8-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport.Tests/Data/UTF-8-test.txt -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport.Tests/Fixtures/Serialization/CakeScriptSerializerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport.Tests/Fixtures/Serialization/CakeScriptSerializerFixture.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport.Tests/Fixtures/Serialization/FileChangeSerializerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport.Tests/Fixtures/Serialization/FileChangeSerializerFixture.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport.Tests/Fixtures/Serialization/SerializerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport.Tests/Fixtures/Serialization/SerializerFixture.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport.Tests/Fixtures/Tcp/InProcessServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport.Tests/Fixtures/Tcp/InProcessServer.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport.Tests/Fixtures/Tcp/ScriptGenerationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport.Tests/Fixtures/Tcp/ScriptGenerationService.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport.Tests/Fixtures/Tcp/TcpCommunicationFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport.Tests/Fixtures/Tcp/TcpCommunicationFixture.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport.Tests/Unit/Serialization/CakeScriptSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport.Tests/Unit/Serialization/CakeScriptSerializerTests.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport.Tests/Unit/Serialization/FileChangeSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport.Tests/Unit/Serialization/FileChangeSerializerTests.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport.Tests/Unit/Tcp/ScriptGenerationClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport.Tests/Unit/Tcp/ScriptGenerationClientTests.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport/Cake.Scripting.Transport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport/Cake.Scripting.Transport.csproj -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport/Extensions/BinaryWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport/Extensions/BinaryWriterExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport/Extensions/SocketExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport/Extensions/SocketExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport/Serialization/CakeScriptSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport/Serialization/CakeScriptSerializer.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport/Serialization/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport/Serialization/Constants.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport/Serialization/FileChangeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport/Serialization/FileChangeSerializer.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport/Tcp/Client/IScriptGenerationProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport/Tcp/Client/IScriptGenerationProcess.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport/Tcp/Client/ScriptGenerationClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport/Tcp/Client/ScriptGenerationClient.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport/Tcp/Client/ScriptGenerationProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport/Tcp/Client/ScriptGenerationProcess.cs -------------------------------------------------------------------------------- /src/Cake.Scripting.Transport/Tcp/Server/ScriptGenerationServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting.Transport/Tcp/Server/ScriptGenerationServer.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Cake.Scripting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Cake.Scripting.csproj -------------------------------------------------------------------------------- /src/Cake.Scripting/CodeGen/CakeScriptAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/CodeGen/CakeScriptAlias.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/CodeGen/CakeScriptAliasFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/CodeGen/CakeScriptAliasFinder.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/CodeGen/CakeScriptGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/CodeGen/CakeScriptGenerator.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/CodeGen/Generators/CakeAliasGenerationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/CodeGen/Generators/CakeAliasGenerationHelper.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/CodeGen/Generators/CakeAliasGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/CodeGen/Generators/CakeAliasGenerator.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/CodeGen/Generators/CakeMethodAliasGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/CodeGen/Generators/CakeMethodAliasGenerator.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/CodeGen/Generators/CakePropertyAliasGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/CodeGen/Generators/CakePropertyAliasGenerator.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/CodeGen/ICakeAliasGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/CodeGen/ICakeAliasGenerator.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/CodeGen/IScriptAliasFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/CodeGen/IScriptAliasFinder.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/CodeGen/IndentedTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/CodeGen/IndentedTextWriter.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Constants.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Documentation/CRefGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Documentation/CRefGenerator.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Documentation/CrefHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Documentation/CrefHelpers.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Documentation/DocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Documentation/DocumentationProvider.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Extensions/CustomAttributeProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Extensions/CustomAttributeProviderExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Extensions/HashSetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Extensions/HashSetExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Extensions/MethodDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Extensions/MethodDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Extensions/TypeDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Extensions/TypeDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/IO/BufferedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/IO/BufferedFile.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/IO/BufferedFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/IO/BufferedFileSystem.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/IO/IBufferedFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/IO/IBufferedFileSystem.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Reflection/Emitters/ParameterEmitOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Reflection/Emitters/ParameterEmitOptions.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Reflection/Emitters/ParameterEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Reflection/Emitters/ParameterEmitter.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Reflection/Emitters/TypeEmitOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Reflection/Emitters/TypeEmitOptions.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Reflection/Emitters/TypeEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Reflection/Emitters/TypeEmitter.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Reflection/GenericParameterSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Reflection/GenericParameterSignature.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Reflection/MethodSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Reflection/MethodSignature.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Reflection/NamespaceSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Reflection/NamespaceSignature.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Reflection/ParameterSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Reflection/ParameterSignature.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Reflection/PropertySignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Reflection/PropertySignature.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Reflection/ReferenceAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Reflection/ReferenceAssemblyResolver.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/Reflection/TypeSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/Reflection/TypeSignature.cs -------------------------------------------------------------------------------- /src/Cake.Scripting/ScriptingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.Scripting/ScriptingModule.cs -------------------------------------------------------------------------------- /src/Cake.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Cake.ruleset -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/NuGet.config -------------------------------------------------------------------------------- /src/Shared.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Shared.props -------------------------------------------------------------------------------- /src/Test.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/Test.ruleset -------------------------------------------------------------------------------- /src/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/src/stylecop.json -------------------------------------------------------------------------------- /src/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { "appDomain": "denied" } -------------------------------------------------------------------------------- /tests/integration/Cake.Bakery.Tests.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/tests/integration/Cake.Bakery.Tests.Integration.csproj -------------------------------------------------------------------------------- /tests/integration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/tests/integration/Program.cs -------------------------------------------------------------------------------- /tests/integration/addin.cake: -------------------------------------------------------------------------------- 1 | #addin nuget:?package=Cake.Wyam2&version=3.0.0-rc2 -------------------------------------------------------------------------------- /tests/integration/cake.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/tests/integration/cake.config -------------------------------------------------------------------------------- /tests/integration/helloworld.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cake-build/bakery/HEAD/tests/integration/helloworld.cake --------------------------------------------------------------------------------