├── .github └── workflows │ └── publish-docs.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── apidocs │ └── index.md ├── docfx.json ├── images │ └── favicon.ico ├── index.md └── toc.yml ├── images ├── intro.gif ├── logo-wide.png ├── logo-wide.svg ├── logo128.png └── themes.gif ├── publish └── .gitignore └── src ├── .editorconfig ├── Directory.Build.props ├── Directory.Build.targets ├── DotMake.CommandLine.Shared ├── Attributes │ ├── CliArgumentArity.cs │ ├── CliArgumentAttribute.cs │ ├── CliCommandAttribute.cs │ ├── CliDirectiveAttribute.cs │ ├── CliNameAutoGenerate.cs │ ├── CliNameCasingConvention.cs │ ├── CliNamePrefixConvention.cs │ ├── CliOptionAttribute.cs │ └── CliValidationRules.cs ├── DotMake.CommandLine.Shared.projitems ├── DotMake.CommandLine.Shared.shproj └── Util │ ├── ExceptionUtil.cs │ └── HashUtil.cs ├── DotMake.CommandLine.SourceGeneration.Embedded ├── CliServiceCollectionExtensions.cs ├── CliServiceProviderExtensions.cs ├── DotMake.CommandLine.SourceGeneration.Embedded.csproj ├── ModuleInitializerAttribute.cs ├── README.md └── RequiredMemberAttribute.cs ├── DotMake.CommandLine.SourceGeneration ├── CliIncrementalGenerator.cs ├── DiagnosticDescriptors.cs ├── DotMake.CommandLine.SourceGeneration.csproj ├── Inputs │ ├── CliArgumentInput.cs │ ├── CliArgumentParserInput.cs │ ├── CliCommandAccessorInput.cs │ ├── CliCommandAsDelegateInput.cs │ ├── CliCommandHandlerInput.cs │ ├── CliCommandInput.cs │ ├── CliDirectiveInput.cs │ ├── CliOptionInput.cs │ ├── CliReferenceDependantInput.cs │ └── InputBase.cs ├── Outputs │ ├── CliArgumentOutput.cs │ ├── CliArgumentParserOutput.cs │ ├── CliCommandAsDelegateOutput.cs │ ├── CliCommandHandlerOutput.cs │ ├── CliCommandOutput.cs │ ├── CliDirectiveOutput.cs │ ├── CliOptionOutput.cs │ ├── OutputBase.cs │ └── OutputNamespaces.cs ├── Resources.Designer.cs ├── Resources.resx └── Util │ ├── AttributeArguments.cs │ ├── CodeStringBuilder.cs │ ├── DiagnosticExtensions.cs │ ├── EnumUtil.cs │ ├── EnumerableExtensions.cs │ ├── QualifiedSyntaxRewriter.cs │ └── SymbolExtensions.cs ├── DotMake.CommandLine.sln ├── DotMake.CommandLine.sln.DotSettings ├── DotMake.CommandLine ├── Binding │ ├── ArgumentConversionResult.cs │ ├── ArgumentConversionResultType.cs │ ├── ArgumentConverter.StringConverters.cs │ ├── ArgumentConverter.cs │ ├── TryConvertArgument.cs │ └── TypeExtensions.cs ├── Cli.cs ├── CliBindingContext.cs ├── CliCommandAsDelegate.cs ├── CliCommandBuilder.cs ├── CliContext.cs ├── CliExtensions.cs ├── CliHelpBuilder.cs ├── CliNamer.cs ├── CliParser.cs ├── CliResult.cs ├── CliRunnableResult.cs ├── CliSession.cs ├── CliSettings.cs ├── CliStringUtil.cs ├── CliSymbolExtensions.cs ├── CliTheme.cs ├── CliValidationExtensions.cs ├── DotMake.CommandLine.csproj ├── Help │ ├── CustomHelpAction.cs │ ├── HelpBuilder.Default.cs │ ├── HelpBuilder.cs │ ├── HelpBuilderExtensions.cs │ ├── HelpContext.cs │ └── TwoColumnHelpRow.cs ├── Interfaces.cs ├── Localization │ ├── LocalizationResources.cs │ └── Resources.Designer.cs ├── NamespaceDoc.cs ├── System │ ├── System.Diagnostics.CodeAnalysis.cs │ ├── System.Runtime.CompilerServices.cs │ └── UnconditionalSuppressMessageAttribute.cs ├── Util │ ├── AssemblyInfo.cs │ ├── ConsoleExtensions.cs │ ├── EnumerableExtensions.cs │ └── ExecutableInfo.cs └── nuget.props ├── TestApp.Nuget ├── README.md └── TestApp.Nuget.csproj ├── TestApp.NugetAot ├── Properties │ └── PublishProfiles │ │ ├── PublishAot.pubxml │ │ └── PublishTrimmed.pubxml ├── README.md └── TestApp.NugetAot.csproj ├── TestApp.NugetDI ├── Commands │ └── RootCliCommand.cs ├── Program.cs ├── README.md └── TestApp.NugetDI.csproj ├── TestApp ├── CliExamples.cs ├── Commands │ ├── ArgumentConverterCliCommand.cs │ ├── CasingConvention │ │ ├── CamelCaseCliCommand.cs │ │ ├── NoCaseCliCommand.cs │ │ ├── SnakeCaseCliCommand.cs │ │ └── UpperCaseCliCommand.cs │ ├── DefaultValuesCliCommand.cs │ ├── DirectiveCliCommand.cs │ ├── EnumerableCliCommand.cs │ ├── ErrorCheckNamespaceConflicts.cs │ ├── ErrorsOrWarnings.cs │ ├── External │ │ ├── ExternalLevel1SubCliCommand.cs │ │ ├── ExternalLevel1WithNestedSubCliCommand.cs │ │ ├── ExternalLevel1WithParentSubCliCommand.cs │ │ ├── ExternalLevel2SubCliCommand.cs │ │ ├── ExternalLevel2WithNestedSubCliCommand.cs │ │ ├── ExternalLevel2WithParentSubCliCommand.cs │ │ └── NestedExternalContainer.cs │ ├── GetCompletionsCliCommand.cs │ ├── GlobalNamespaceCliCommand.cs │ ├── HelpCliCommand.cs │ ├── InheritanceCliCommand.cs │ ├── InvalidCliCommand.cs │ ├── LocalizedCliCommand.cs │ ├── NullableReferenceCommand.cs │ ├── OptionBundlingCliCommand.cs │ ├── OrderedCliCommand.cs │ ├── ParentCommandAccessorCliCommand.cs │ ├── PartialCliCommand.cs │ ├── PartialCliCommand2.cs │ ├── PrefixConvention │ │ ├── ForwardSlashCliCommand.cs │ │ └── SingleHyphenCliCommand.cs │ ├── RecursiveOptionCliCommand.cs │ ├── RootAsExternalParentCliCommand.cs │ ├── RootCliCommand.cs │ ├── RootHelpOnEmptyCliCommand.cs │ ├── RootSnakeSlashCliCommand.cs │ ├── RootWithExternalChildrenCliCommand.cs │ ├── RootWithMixedChildrenCliCommand.cs │ ├── RootWithNestedChildrenCliCommand.cs │ ├── RunAsyncCliCommand.cs │ ├── RunAsyncWithReturnCliCommand.cs │ ├── ShortFormCliCommand.cs │ ├── TaskIntReturnCliCommand.cs │ ├── TaskVoidReturnCliCommand.cs │ ├── ValidationCliCommand.cs │ └── WriteFileCliCommand.cs ├── GeneratedFiles │ ├── net472 │ │ └── DotMake.CommandLine.SourceGeneration │ │ │ └── DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator │ │ │ ├── (ModuleInitializerAttribute).g.cs │ │ │ ├── (RequiredMemberAttribute).g.cs │ │ │ ├── ArgumentConverterCliCommandBuilder-3j0trcm.g.cs │ │ │ ├── CamelCaseCliCommandBuilder-2ntm48g.g.cs │ │ │ ├── CliCommandAsDelegate_4yk4pbm.g.cs │ │ │ ├── CliCommandAsDelegate_4yk4pbmBuilder-fgjtvar.g.cs │ │ │ ├── CliCommandAsDelegate_5v59h64.g.cs │ │ │ ├── CliCommandAsDelegate_5v59h64Builder-7065v10.g.cs │ │ │ ├── CliCommandAsDelegate_a5kez68.g.cs │ │ │ ├── CliCommandAsDelegate_a5kez68Builder-8v0rf78.g.cs │ │ │ ├── CliCommandAsDelegate_a79pkj0.g.cs │ │ │ ├── CliCommandAsDelegate_a79pkj0Builder-7q3whb8.g.cs │ │ │ ├── CliCommandAsDelegate_dtqhqvw.g.cs │ │ │ ├── CliCommandAsDelegate_dtqhqvwBuilder-24t9d3r.g.cs │ │ │ ├── CliCommandAsDelegate_fsqgtf8.g.cs │ │ │ ├── CliCommandAsDelegate_fsqgtf8Builder-adpk9bw.g.cs │ │ │ ├── DefaultValuesCliCommandBuilder-cp8vpgr.g.cs │ │ │ ├── DirectiveCliCommandBuilder-fk4g0x4.g.cs │ │ │ ├── DotMakeCliCommandBuilder-cscbzn4.g.cs │ │ │ ├── EnumerableCliCommandBuilder-4g31n28.g.cs │ │ │ ├── ExternalLevel1SubCliCommandBuilder-5akxa6g.g.cs │ │ │ ├── ExternalLevel1WithNestedSubCliCommandBuilder-25nt0dw.g.cs │ │ │ ├── ExternalLevel1WithParentSubCliCommandBuilder-dknbaar.g.cs │ │ │ ├── ExternalLevel2SubCliCommandBuilder-f115cer.g.cs │ │ │ ├── ExternalLevel2WithNestedSubCliCommandBuilder-8yb7718.g.cs │ │ │ ├── ExternalLevel2WithParentSubCliCommandBuilder-9htrz5c.g.cs │ │ │ ├── ForwardSlashCliCommandBuilder-ckm8hq4.g.cs │ │ │ ├── GetCompletionsCliCommandBuilder-8qyssnw.g.cs │ │ │ ├── GlobalNamespaceCliCommandBuilder-0ysjem0.g.cs │ │ │ ├── HelpCliCommandBuilder-6p704fc.g.cs │ │ │ ├── InheritanceCliCommandBuilder-7dn3htg.g.cs │ │ │ ├── InvalidCliCommandBuilder-87q85br.g.cs │ │ │ ├── LocalizedCliCommandBuilder-925b8cm.g.cs │ │ │ ├── NestedLevel2SubCliCommandBuilder-dgsann0.g.cs │ │ │ ├── NoCaseCliCommandBuilder-4t3ftk0.g.cs │ │ │ ├── NullableReferenceCommandBuilder-2nzatvc.g.cs │ │ │ ├── OptionBundlingCliCommandBuilder-9gjqwq8.g.cs │ │ │ ├── OrderedCliCommandBuilder-2tnnee4.g.cs │ │ │ ├── ParentCommandAccessorCliCommandBuilder-2rk2p5c.g.cs │ │ │ ├── PartialCliCommandBuilder-bvdhcbr.g.cs │ │ │ ├── PartialNestedCliCommandBuilder-79sg2x8.g.cs │ │ │ ├── RecursiveOptionCliCommandBuilder-cjdtfwm.g.cs │ │ │ ├── RootAsExternalParentCliCommandBuilder-cztm7em.g.cs │ │ │ ├── RootCliCommandBuilder-347kkvm.g.cs │ │ │ ├── RootHelpOnEmptyCliCommandBuilder-c7w03z0.g.cs │ │ │ ├── RootSnakeSlashCliCommandBuilder-bbh9erm.g.cs │ │ │ ├── RootWithExternalChildrenCliCommandBuilder-cmth3f4.g.cs │ │ │ ├── RootWithMixedChildrenCliCommandBuilder-fnvh3qc.g.cs │ │ │ ├── RootWithNestedChildrenCliCommandBuilder-2ccfcdg.g.cs │ │ │ ├── RunAsyncCliCommandBuilder-7ya97jr.g.cs │ │ │ ├── RunAsyncWithReturnCliCommandBuilder-3200g10.g.cs │ │ │ ├── ShortFormCliCommandBuilder-4dny93g.g.cs │ │ │ ├── SingleHyphenCliCommandBuilder-1zffg8c.g.cs │ │ │ ├── SnakeCaseCliCommandBuilder-bh2xb7r.g.cs │ │ │ ├── SystemCliCommandBuilder-e4nechr.g.cs │ │ │ ├── TaskIntReturnCliCommandBuilder-5519fdr.g.cs │ │ │ ├── TaskVoidReturnCliCommandBuilder-1ks7cxr.g.cs │ │ │ ├── TestAppCliCommandBuilder-8s8pwp4.g.cs │ │ │ ├── UpperCaseCliCommandBuilder-3rh916w.g.cs │ │ │ ├── ValidationCliCommandBuilder-3pw82mw.g.cs │ │ │ └── WriteFileCliCommandBuilder-eaq0bpr.g.cs │ └── net8.0 │ │ └── DotMake.CommandLine.SourceGeneration │ │ └── DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator │ │ ├── ArgumentConverterCliCommandBuilder-3j0trcm.g.cs │ │ ├── CamelCaseCliCommandBuilder-2ntm48g.g.cs │ │ ├── CliCommandAsDelegate_4yk4pbm.g.cs │ │ ├── CliCommandAsDelegate_4yk4pbmBuilder-fgjtvar.g.cs │ │ ├── CliCommandAsDelegate_5v59h64.g.cs │ │ ├── CliCommandAsDelegate_5v59h64Builder-7065v10.g.cs │ │ ├── CliCommandAsDelegate_a5kez68.g.cs │ │ ├── CliCommandAsDelegate_a5kez68Builder-8v0rf78.g.cs │ │ ├── CliCommandAsDelegate_a79pkj0.g.cs │ │ ├── CliCommandAsDelegate_a79pkj0Builder-7q3whb8.g.cs │ │ ├── CliCommandAsDelegate_dtqhqvw.g.cs │ │ ├── CliCommandAsDelegate_dtqhqvwBuilder-24t9d3r.g.cs │ │ ├── CliCommandAsDelegate_fsqgtf8.g.cs │ │ ├── CliCommandAsDelegate_fsqgtf8Builder-adpk9bw.g.cs │ │ ├── DefaultValuesCliCommandBuilder-cp8vpgr.g.cs │ │ ├── DirectiveCliCommandBuilder-fk4g0x4.g.cs │ │ ├── DotMakeCliCommandBuilder-cscbzn4.g.cs │ │ ├── EnumerableCliCommandBuilder-4g31n28.g.cs │ │ ├── ExternalLevel1SubCliCommandBuilder-5akxa6g.g.cs │ │ ├── ExternalLevel1WithNestedSubCliCommandBuilder-25nt0dw.g.cs │ │ ├── ExternalLevel1WithParentSubCliCommandBuilder-dknbaar.g.cs │ │ ├── ExternalLevel2SubCliCommandBuilder-f115cer.g.cs │ │ ├── ExternalLevel2WithNestedSubCliCommandBuilder-8yb7718.g.cs │ │ ├── ExternalLevel2WithParentSubCliCommandBuilder-9htrz5c.g.cs │ │ ├── ForwardSlashCliCommandBuilder-ckm8hq4.g.cs │ │ ├── GetCompletionsCliCommandBuilder-8qyssnw.g.cs │ │ ├── GlobalNamespaceCliCommandBuilder-0ysjem0.g.cs │ │ ├── HelpCliCommandBuilder-6p704fc.g.cs │ │ ├── InheritanceCliCommandBuilder-7dn3htg.g.cs │ │ ├── InvalidCliCommandBuilder-87q85br.g.cs │ │ ├── LocalizedCliCommandBuilder-925b8cm.g.cs │ │ ├── NestedLevel2SubCliCommandBuilder-dgsann0.g.cs │ │ ├── NoCaseCliCommandBuilder-4t3ftk0.g.cs │ │ ├── NullableReferenceCommandBuilder-2nzatvc.g.cs │ │ ├── OptionBundlingCliCommandBuilder-9gjqwq8.g.cs │ │ ├── OrderedCliCommandBuilder-2tnnee4.g.cs │ │ ├── ParentCommandAccessorCliCommandBuilder-2rk2p5c.g.cs │ │ ├── PartialCliCommandBuilder-bvdhcbr.g.cs │ │ ├── PartialNestedCliCommandBuilder-79sg2x8.g.cs │ │ ├── RecursiveOptionCliCommandBuilder-cjdtfwm.g.cs │ │ ├── RootAsExternalParentCliCommandBuilder-cztm7em.g.cs │ │ ├── RootCliCommandBuilder-347kkvm.g.cs │ │ ├── RootHelpOnEmptyCliCommandBuilder-c7w03z0.g.cs │ │ ├── RootSnakeSlashCliCommandBuilder-bbh9erm.g.cs │ │ ├── RootWithExternalChildrenCliCommandBuilder-cmth3f4.g.cs │ │ ├── RootWithMixedChildrenCliCommandBuilder-fnvh3qc.g.cs │ │ ├── RootWithNestedChildrenCliCommandBuilder-2ccfcdg.g.cs │ │ ├── RunAsyncCliCommandBuilder-7ya97jr.g.cs │ │ ├── RunAsyncWithReturnCliCommandBuilder-3200g10.g.cs │ │ ├── ShortFormCliCommandBuilder-4dny93g.g.cs │ │ ├── SingleHyphenCliCommandBuilder-1zffg8c.g.cs │ │ ├── SnakeCaseCliCommandBuilder-bh2xb7r.g.cs │ │ ├── SystemCliCommandBuilder-e4nechr.g.cs │ │ ├── TaskIntReturnCliCommandBuilder-5519fdr.g.cs │ │ ├── TaskVoidReturnCliCommandBuilder-1ks7cxr.g.cs │ │ ├── TestAppCliCommandBuilder-8s8pwp4.g.cs │ │ ├── UpperCaseCliCommandBuilder-3rh916w.g.cs │ │ ├── ValidationCliCommandBuilder-3pw82mw.g.cs │ │ └── WriteFileCliCommandBuilder-eaq0bpr.g.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── TestApp.csproj ├── TestResources.Designer.cs └── TestResources.resx └── nuget.config /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | # docfx generated 2 | _site 3 | api -------------------------------------------------------------------------------- /docs/apidocs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | redirect_url: DotMake.CommandLine.html 3 | --- -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | [!include [getting-started](../README.md)] -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /images/intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/images/intro.gif -------------------------------------------------------------------------------- /images/logo-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/images/logo-wide.png -------------------------------------------------------------------------------- /images/logo-wide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/images/logo-wide.svg -------------------------------------------------------------------------------- /images/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/images/logo128.png -------------------------------------------------------------------------------- /images/themes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/images/themes.gif -------------------------------------------------------------------------------- /publish/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/Attributes/CliArgumentArity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/Attributes/CliArgumentArity.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/Attributes/CliArgumentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/Attributes/CliArgumentAttribute.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/Attributes/CliCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/Attributes/CliCommandAttribute.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/Attributes/CliDirectiveAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/Attributes/CliDirectiveAttribute.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/Attributes/CliNameAutoGenerate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/Attributes/CliNameAutoGenerate.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/Attributes/CliNameCasingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/Attributes/CliNameCasingConvention.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/Attributes/CliNamePrefixConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/Attributes/CliNamePrefixConvention.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/Attributes/CliOptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/Attributes/CliOptionAttribute.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/Attributes/CliValidationRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/Attributes/CliValidationRules.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/DotMake.CommandLine.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/DotMake.CommandLine.Shared.projitems -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/DotMake.CommandLine.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/DotMake.CommandLine.Shared.shproj -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/Util/ExceptionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/Util/ExceptionUtil.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.Shared/Util/HashUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.Shared/Util/HashUtil.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration.Embedded/CliServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration.Embedded/CliServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration.Embedded/CliServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration.Embedded/CliServiceProviderExtensions.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration.Embedded/DotMake.CommandLine.SourceGeneration.Embedded.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration.Embedded/DotMake.CommandLine.SourceGeneration.Embedded.csproj -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration.Embedded/ModuleInitializerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration.Embedded/ModuleInitializerAttribute.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration.Embedded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration.Embedded/README.md -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration.Embedded/RequiredMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration.Embedded/RequiredMemberAttribute.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/CliIncrementalGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/CliIncrementalGenerator.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/DiagnosticDescriptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/DiagnosticDescriptors.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.csproj -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Inputs/CliArgumentInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Inputs/CliArgumentInput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Inputs/CliArgumentParserInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Inputs/CliArgumentParserInput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Inputs/CliCommandAccessorInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Inputs/CliCommandAccessorInput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Inputs/CliCommandAsDelegateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Inputs/CliCommandAsDelegateInput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Inputs/CliCommandHandlerInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Inputs/CliCommandHandlerInput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Inputs/CliCommandInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Inputs/CliCommandInput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Inputs/CliDirectiveInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Inputs/CliDirectiveInput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Inputs/CliOptionInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Inputs/CliOptionInput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Inputs/CliReferenceDependantInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Inputs/CliReferenceDependantInput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Inputs/InputBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Inputs/InputBase.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Outputs/CliArgumentOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Outputs/CliArgumentOutput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Outputs/CliArgumentParserOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Outputs/CliArgumentParserOutput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Outputs/CliCommandAsDelegateOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Outputs/CliCommandAsDelegateOutput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Outputs/CliCommandHandlerOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Outputs/CliCommandHandlerOutput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Outputs/CliCommandOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Outputs/CliCommandOutput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Outputs/CliDirectiveOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Outputs/CliDirectiveOutput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Outputs/CliOptionOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Outputs/CliOptionOutput.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Outputs/OutputBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Outputs/OutputBase.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Outputs/OutputNamespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Outputs/OutputNamespaces.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Resources.Designer.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Resources.resx -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Util/AttributeArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Util/AttributeArguments.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Util/CodeStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Util/CodeStringBuilder.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Util/DiagnosticExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Util/DiagnosticExtensions.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Util/EnumUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Util/EnumUtil.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Util/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Util/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Util/QualifiedSyntaxRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Util/QualifiedSyntaxRewriter.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.SourceGeneration/Util/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.SourceGeneration/Util/SymbolExtensions.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.sln -------------------------------------------------------------------------------- /src/DotMake.CommandLine.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine.sln.DotSettings -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Binding/ArgumentConversionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Binding/ArgumentConversionResult.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Binding/ArgumentConversionResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Binding/ArgumentConversionResultType.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Binding/ArgumentConverter.StringConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Binding/ArgumentConverter.StringConverters.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Binding/ArgumentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Binding/ArgumentConverter.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Binding/TryConvertArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Binding/TryConvertArgument.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Binding/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Binding/TypeExtensions.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Cli.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliBindingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliBindingContext.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliCommandAsDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliCommandAsDelegate.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliCommandBuilder.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliContext.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliExtensions.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliHelpBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliHelpBuilder.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliNamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliNamer.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliParser.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliResult.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliRunnableResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliRunnableResult.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliSession.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliSettings.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliStringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliStringUtil.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliSymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliSymbolExtensions.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliTheme.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/CliValidationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/CliValidationExtensions.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/DotMake.CommandLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/DotMake.CommandLine.csproj -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Help/CustomHelpAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Help/CustomHelpAction.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Help/HelpBuilder.Default.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Help/HelpBuilder.Default.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Help/HelpBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Help/HelpBuilder.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Help/HelpBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Help/HelpBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Help/HelpContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Help/HelpContext.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Help/TwoColumnHelpRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Help/TwoColumnHelpRow.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Interfaces.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Localization/LocalizationResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Localization/LocalizationResources.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Localization/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Localization/Resources.Designer.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/NamespaceDoc.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/System/System.Diagnostics.CodeAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/System/System.Diagnostics.CodeAnalysis.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/System/System.Runtime.CompilerServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/System/System.Runtime.CompilerServices.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/System/UnconditionalSuppressMessageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/System/UnconditionalSuppressMessageAttribute.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Util/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Util/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Util/ConsoleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Util/ConsoleExtensions.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Util/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Util/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/Util/ExecutableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/Util/ExecutableInfo.cs -------------------------------------------------------------------------------- /src/DotMake.CommandLine/nuget.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/DotMake.CommandLine/nuget.props -------------------------------------------------------------------------------- /src/TestApp.Nuget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp.Nuget/README.md -------------------------------------------------------------------------------- /src/TestApp.Nuget/TestApp.Nuget.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp.Nuget/TestApp.Nuget.csproj -------------------------------------------------------------------------------- /src/TestApp.NugetAot/Properties/PublishProfiles/PublishAot.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp.NugetAot/Properties/PublishProfiles/PublishAot.pubxml -------------------------------------------------------------------------------- /src/TestApp.NugetAot/Properties/PublishProfiles/PublishTrimmed.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp.NugetAot/Properties/PublishProfiles/PublishTrimmed.pubxml -------------------------------------------------------------------------------- /src/TestApp.NugetAot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp.NugetAot/README.md -------------------------------------------------------------------------------- /src/TestApp.NugetAot/TestApp.NugetAot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp.NugetAot/TestApp.NugetAot.csproj -------------------------------------------------------------------------------- /src/TestApp.NugetDI/Commands/RootCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp.NugetDI/Commands/RootCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp.NugetDI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp.NugetDI/Program.cs -------------------------------------------------------------------------------- /src/TestApp.NugetDI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp.NugetDI/README.md -------------------------------------------------------------------------------- /src/TestApp.NugetDI/TestApp.NugetDI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp.NugetDI/TestApp.NugetDI.csproj -------------------------------------------------------------------------------- /src/TestApp/CliExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/CliExamples.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/ArgumentConverterCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/ArgumentConverterCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/CasingConvention/CamelCaseCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/CasingConvention/CamelCaseCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/CasingConvention/NoCaseCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/CasingConvention/NoCaseCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/CasingConvention/SnakeCaseCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/CasingConvention/SnakeCaseCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/CasingConvention/UpperCaseCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/CasingConvention/UpperCaseCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/DefaultValuesCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/DefaultValuesCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/DirectiveCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/DirectiveCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/EnumerableCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/EnumerableCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/ErrorCheckNamespaceConflicts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/ErrorCheckNamespaceConflicts.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/ErrorsOrWarnings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/ErrorsOrWarnings.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/External/ExternalLevel1SubCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/External/ExternalLevel1SubCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/External/ExternalLevel1WithNestedSubCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/External/ExternalLevel1WithNestedSubCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/External/ExternalLevel1WithParentSubCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/External/ExternalLevel1WithParentSubCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/External/ExternalLevel2SubCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/External/ExternalLevel2SubCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/External/ExternalLevel2WithNestedSubCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/External/ExternalLevel2WithNestedSubCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/External/ExternalLevel2WithParentSubCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/External/ExternalLevel2WithParentSubCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/External/NestedExternalContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/External/NestedExternalContainer.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/GetCompletionsCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/GetCompletionsCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/GlobalNamespaceCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/GlobalNamespaceCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/HelpCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/HelpCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/InheritanceCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/InheritanceCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/InvalidCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/InvalidCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/LocalizedCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/LocalizedCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/NullableReferenceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/NullableReferenceCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/OptionBundlingCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/OptionBundlingCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/OrderedCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/OrderedCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/ParentCommandAccessorCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/ParentCommandAccessorCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/PartialCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/PartialCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/PartialCliCommand2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/PartialCliCommand2.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/PrefixConvention/ForwardSlashCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/PrefixConvention/ForwardSlashCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/PrefixConvention/SingleHyphenCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/PrefixConvention/SingleHyphenCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/RecursiveOptionCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/RecursiveOptionCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/RootAsExternalParentCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/RootAsExternalParentCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/RootCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/RootCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/RootHelpOnEmptyCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/RootHelpOnEmptyCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/RootSnakeSlashCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/RootSnakeSlashCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/RootWithExternalChildrenCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/RootWithExternalChildrenCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/RootWithMixedChildrenCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/RootWithMixedChildrenCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/RootWithNestedChildrenCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/RootWithNestedChildrenCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/RunAsyncCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/RunAsyncCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/RunAsyncWithReturnCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/RunAsyncWithReturnCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/ShortFormCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/ShortFormCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/TaskIntReturnCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/TaskIntReturnCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/TaskVoidReturnCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/TaskVoidReturnCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/ValidationCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/ValidationCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/Commands/WriteFileCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Commands/WriteFileCliCommand.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/(ModuleInitializerAttribute).g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/(ModuleInitializerAttribute).g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/(RequiredMemberAttribute).g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/(RequiredMemberAttribute).g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ArgumentConverterCliCommandBuilder-3j0trcm.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ArgumentConverterCliCommandBuilder-3j0trcm.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CamelCaseCliCommandBuilder-2ntm48g.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CamelCaseCliCommandBuilder-2ntm48g.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_4yk4pbm.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_4yk4pbm.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_4yk4pbmBuilder-fgjtvar.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_4yk4pbmBuilder-fgjtvar.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_5v59h64.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_5v59h64.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_5v59h64Builder-7065v10.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_5v59h64Builder-7065v10.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a5kez68.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a5kez68.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a5kez68Builder-8v0rf78.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a5kez68Builder-8v0rf78.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a79pkj0.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a79pkj0.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a79pkj0Builder-7q3whb8.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a79pkj0Builder-7q3whb8.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_dtqhqvw.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_dtqhqvw.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_dtqhqvwBuilder-24t9d3r.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_dtqhqvwBuilder-24t9d3r.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_fsqgtf8.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_fsqgtf8.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_fsqgtf8Builder-adpk9bw.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_fsqgtf8Builder-adpk9bw.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/DefaultValuesCliCommandBuilder-cp8vpgr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/DefaultValuesCliCommandBuilder-cp8vpgr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/DirectiveCliCommandBuilder-fk4g0x4.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/DirectiveCliCommandBuilder-fk4g0x4.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/DotMakeCliCommandBuilder-cscbzn4.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/DotMakeCliCommandBuilder-cscbzn4.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/EnumerableCliCommandBuilder-4g31n28.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/EnumerableCliCommandBuilder-4g31n28.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel1SubCliCommandBuilder-5akxa6g.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel1SubCliCommandBuilder-5akxa6g.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel1WithNestedSubCliCommandBuilder-25nt0dw.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel1WithNestedSubCliCommandBuilder-25nt0dw.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel1WithParentSubCliCommandBuilder-dknbaar.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel1WithParentSubCliCommandBuilder-dknbaar.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel2SubCliCommandBuilder-f115cer.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel2SubCliCommandBuilder-f115cer.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel2WithNestedSubCliCommandBuilder-8yb7718.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel2WithNestedSubCliCommandBuilder-8yb7718.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel2WithParentSubCliCommandBuilder-9htrz5c.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel2WithParentSubCliCommandBuilder-9htrz5c.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ForwardSlashCliCommandBuilder-ckm8hq4.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ForwardSlashCliCommandBuilder-ckm8hq4.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/GetCompletionsCliCommandBuilder-8qyssnw.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/GetCompletionsCliCommandBuilder-8qyssnw.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/GlobalNamespaceCliCommandBuilder-0ysjem0.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/GlobalNamespaceCliCommandBuilder-0ysjem0.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/HelpCliCommandBuilder-6p704fc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/HelpCliCommandBuilder-6p704fc.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/InheritanceCliCommandBuilder-7dn3htg.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/InheritanceCliCommandBuilder-7dn3htg.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/InvalidCliCommandBuilder-87q85br.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/InvalidCliCommandBuilder-87q85br.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/LocalizedCliCommandBuilder-925b8cm.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/LocalizedCliCommandBuilder-925b8cm.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/NestedLevel2SubCliCommandBuilder-dgsann0.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/NestedLevel2SubCliCommandBuilder-dgsann0.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/NoCaseCliCommandBuilder-4t3ftk0.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/NoCaseCliCommandBuilder-4t3ftk0.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/NullableReferenceCommandBuilder-2nzatvc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/NullableReferenceCommandBuilder-2nzatvc.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/OptionBundlingCliCommandBuilder-9gjqwq8.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/OptionBundlingCliCommandBuilder-9gjqwq8.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/OrderedCliCommandBuilder-2tnnee4.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/OrderedCliCommandBuilder-2tnnee4.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ParentCommandAccessorCliCommandBuilder-2rk2p5c.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ParentCommandAccessorCliCommandBuilder-2rk2p5c.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/PartialCliCommandBuilder-bvdhcbr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/PartialCliCommandBuilder-bvdhcbr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/PartialNestedCliCommandBuilder-79sg2x8.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/PartialNestedCliCommandBuilder-79sg2x8.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RecursiveOptionCliCommandBuilder-cjdtfwm.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RecursiveOptionCliCommandBuilder-cjdtfwm.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootAsExternalParentCliCommandBuilder-cztm7em.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootAsExternalParentCliCommandBuilder-cztm7em.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootCliCommandBuilder-347kkvm.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootCliCommandBuilder-347kkvm.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootHelpOnEmptyCliCommandBuilder-c7w03z0.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootHelpOnEmptyCliCommandBuilder-c7w03z0.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootSnakeSlashCliCommandBuilder-bbh9erm.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootSnakeSlashCliCommandBuilder-bbh9erm.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootWithExternalChildrenCliCommandBuilder-cmth3f4.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootWithExternalChildrenCliCommandBuilder-cmth3f4.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootWithMixedChildrenCliCommandBuilder-fnvh3qc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootWithMixedChildrenCliCommandBuilder-fnvh3qc.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootWithNestedChildrenCliCommandBuilder-2ccfcdg.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootWithNestedChildrenCliCommandBuilder-2ccfcdg.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RunAsyncCliCommandBuilder-7ya97jr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RunAsyncCliCommandBuilder-7ya97jr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RunAsyncWithReturnCliCommandBuilder-3200g10.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RunAsyncWithReturnCliCommandBuilder-3200g10.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ShortFormCliCommandBuilder-4dny93g.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ShortFormCliCommandBuilder-4dny93g.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/SingleHyphenCliCommandBuilder-1zffg8c.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/SingleHyphenCliCommandBuilder-1zffg8c.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/SnakeCaseCliCommandBuilder-bh2xb7r.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/SnakeCaseCliCommandBuilder-bh2xb7r.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/SystemCliCommandBuilder-e4nechr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/SystemCliCommandBuilder-e4nechr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/TaskIntReturnCliCommandBuilder-5519fdr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/TaskIntReturnCliCommandBuilder-5519fdr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/TaskVoidReturnCliCommandBuilder-1ks7cxr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/TaskVoidReturnCliCommandBuilder-1ks7cxr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/TestAppCliCommandBuilder-8s8pwp4.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/TestAppCliCommandBuilder-8s8pwp4.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/UpperCaseCliCommandBuilder-3rh916w.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/UpperCaseCliCommandBuilder-3rh916w.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ValidationCliCommandBuilder-3pw82mw.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ValidationCliCommandBuilder-3pw82mw.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/WriteFileCliCommandBuilder-eaq0bpr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net472/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/WriteFileCliCommandBuilder-eaq0bpr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ArgumentConverterCliCommandBuilder-3j0trcm.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ArgumentConverterCliCommandBuilder-3j0trcm.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CamelCaseCliCommandBuilder-2ntm48g.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CamelCaseCliCommandBuilder-2ntm48g.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_4yk4pbm.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_4yk4pbm.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_4yk4pbmBuilder-fgjtvar.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_4yk4pbmBuilder-fgjtvar.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_5v59h64.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_5v59h64.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_5v59h64Builder-7065v10.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_5v59h64Builder-7065v10.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a5kez68.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a5kez68.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a5kez68Builder-8v0rf78.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a5kez68Builder-8v0rf78.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a79pkj0.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a79pkj0.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a79pkj0Builder-7q3whb8.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_a79pkj0Builder-7q3whb8.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_dtqhqvw.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_dtqhqvw.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_dtqhqvwBuilder-24t9d3r.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_dtqhqvwBuilder-24t9d3r.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_fsqgtf8.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_fsqgtf8.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_fsqgtf8Builder-adpk9bw.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/CliCommandAsDelegate_fsqgtf8Builder-adpk9bw.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/DefaultValuesCliCommandBuilder-cp8vpgr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/DefaultValuesCliCommandBuilder-cp8vpgr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/DirectiveCliCommandBuilder-fk4g0x4.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/DirectiveCliCommandBuilder-fk4g0x4.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/DotMakeCliCommandBuilder-cscbzn4.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/DotMakeCliCommandBuilder-cscbzn4.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/EnumerableCliCommandBuilder-4g31n28.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/EnumerableCliCommandBuilder-4g31n28.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel1SubCliCommandBuilder-5akxa6g.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel1SubCliCommandBuilder-5akxa6g.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel1WithNestedSubCliCommandBuilder-25nt0dw.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel1WithNestedSubCliCommandBuilder-25nt0dw.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel1WithParentSubCliCommandBuilder-dknbaar.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel1WithParentSubCliCommandBuilder-dknbaar.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel2SubCliCommandBuilder-f115cer.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel2SubCliCommandBuilder-f115cer.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel2WithNestedSubCliCommandBuilder-8yb7718.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel2WithNestedSubCliCommandBuilder-8yb7718.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel2WithParentSubCliCommandBuilder-9htrz5c.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ExternalLevel2WithParentSubCliCommandBuilder-9htrz5c.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ForwardSlashCliCommandBuilder-ckm8hq4.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ForwardSlashCliCommandBuilder-ckm8hq4.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/GetCompletionsCliCommandBuilder-8qyssnw.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/GetCompletionsCliCommandBuilder-8qyssnw.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/GlobalNamespaceCliCommandBuilder-0ysjem0.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/GlobalNamespaceCliCommandBuilder-0ysjem0.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/HelpCliCommandBuilder-6p704fc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/HelpCliCommandBuilder-6p704fc.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/InheritanceCliCommandBuilder-7dn3htg.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/InheritanceCliCommandBuilder-7dn3htg.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/InvalidCliCommandBuilder-87q85br.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/InvalidCliCommandBuilder-87q85br.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/LocalizedCliCommandBuilder-925b8cm.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/LocalizedCliCommandBuilder-925b8cm.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/NestedLevel2SubCliCommandBuilder-dgsann0.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/NestedLevel2SubCliCommandBuilder-dgsann0.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/NoCaseCliCommandBuilder-4t3ftk0.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/NoCaseCliCommandBuilder-4t3ftk0.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/NullableReferenceCommandBuilder-2nzatvc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/NullableReferenceCommandBuilder-2nzatvc.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/OptionBundlingCliCommandBuilder-9gjqwq8.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/OptionBundlingCliCommandBuilder-9gjqwq8.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/OrderedCliCommandBuilder-2tnnee4.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/OrderedCliCommandBuilder-2tnnee4.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ParentCommandAccessorCliCommandBuilder-2rk2p5c.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ParentCommandAccessorCliCommandBuilder-2rk2p5c.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/PartialCliCommandBuilder-bvdhcbr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/PartialCliCommandBuilder-bvdhcbr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/PartialNestedCliCommandBuilder-79sg2x8.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/PartialNestedCliCommandBuilder-79sg2x8.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RecursiveOptionCliCommandBuilder-cjdtfwm.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RecursiveOptionCliCommandBuilder-cjdtfwm.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootAsExternalParentCliCommandBuilder-cztm7em.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootAsExternalParentCliCommandBuilder-cztm7em.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootCliCommandBuilder-347kkvm.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootCliCommandBuilder-347kkvm.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootHelpOnEmptyCliCommandBuilder-c7w03z0.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootHelpOnEmptyCliCommandBuilder-c7w03z0.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootSnakeSlashCliCommandBuilder-bbh9erm.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootSnakeSlashCliCommandBuilder-bbh9erm.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootWithExternalChildrenCliCommandBuilder-cmth3f4.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootWithExternalChildrenCliCommandBuilder-cmth3f4.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootWithMixedChildrenCliCommandBuilder-fnvh3qc.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootWithMixedChildrenCliCommandBuilder-fnvh3qc.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootWithNestedChildrenCliCommandBuilder-2ccfcdg.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RootWithNestedChildrenCliCommandBuilder-2ccfcdg.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RunAsyncCliCommandBuilder-7ya97jr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RunAsyncCliCommandBuilder-7ya97jr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RunAsyncWithReturnCliCommandBuilder-3200g10.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/RunAsyncWithReturnCliCommandBuilder-3200g10.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ShortFormCliCommandBuilder-4dny93g.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ShortFormCliCommandBuilder-4dny93g.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/SingleHyphenCliCommandBuilder-1zffg8c.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/SingleHyphenCliCommandBuilder-1zffg8c.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/SnakeCaseCliCommandBuilder-bh2xb7r.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/SnakeCaseCliCommandBuilder-bh2xb7r.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/SystemCliCommandBuilder-e4nechr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/SystemCliCommandBuilder-e4nechr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/TaskIntReturnCliCommandBuilder-5519fdr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/TaskIntReturnCliCommandBuilder-5519fdr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/TaskVoidReturnCliCommandBuilder-1ks7cxr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/TaskVoidReturnCliCommandBuilder-1ks7cxr.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/TestAppCliCommandBuilder-8s8pwp4.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/TestAppCliCommandBuilder-8s8pwp4.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/UpperCaseCliCommandBuilder-3rh916w.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/UpperCaseCliCommandBuilder-3rh916w.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ValidationCliCommandBuilder-3pw82mw.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/ValidationCliCommandBuilder-3pw82mw.g.cs -------------------------------------------------------------------------------- /src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/WriteFileCliCommandBuilder-eaq0bpr.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/GeneratedFiles/net8.0/DotMake.CommandLine.SourceGeneration/DotMake.CommandLine.SourceGeneration.CliIncrementalGenerator/WriteFileCliCommandBuilder-eaq0bpr.g.cs -------------------------------------------------------------------------------- /src/TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Program.cs -------------------------------------------------------------------------------- /src/TestApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/TestApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/README.md -------------------------------------------------------------------------------- /src/TestApp/TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/TestApp.csproj -------------------------------------------------------------------------------- /src/TestApp/TestResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/TestResources.Designer.cs -------------------------------------------------------------------------------- /src/TestApp/TestResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/TestApp/TestResources.resx -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmake-build/command-line/HEAD/src/nuget.config --------------------------------------------------------------------------------