diff --git a/readme.md b/readme.md index 9efaee4..f7b4b24 100644 --- a/readme.md +++ b/readme.md @@ -478,6 +478,7 @@ For numbers, the argument/option can be either `long` or `int`. Keep in mind tha [![Version](https://img.shields.io/nuget/v/dotnet-config.svg?color=royalblue)](https://www.nuget.org/packages/dotnet-config) [![Downloads](https://img.shields.io/nuget/dt/dotnet-config.svg?color=darkmagenta)](https://www.nuget.org/packages/dotnet-config) + The command line tool allows you to inspect and modify configuration files used by your dotnet tools. Installation is the same as for any other dotnet tool: @@ -533,3 +534,6 @@ Command line parsing is done with [Mono.Options](https://www.nuget.org/packages/ all the following variants for arguments are supported: `-flag`, `--flag`, `/flag`, `-flag=value`, `--flag=value`, `/flag=value`, `-flag:value`, `--flag:value`, `/flag:value`, `-flag value`, `--flag value`, `/flag value`. + + + \ No newline at end of file diff --git a/src/CommandLine/CommandLine.csproj b/src/CommandLine/CommandLine.csproj index 230d4f4..be505d5 100644 --- a/src/CommandLine/CommandLine.csproj +++ b/src/CommandLine/CommandLine.csproj @@ -35,6 +35,10 @@ The following heuristics are applied when providing default values: + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/src/Config.Tool/Config.Tool.csproj b/src/Config.Tool/Config.Tool.csproj index 2a2ef77..29bb93d 100644 --- a/src/Config.Tool/Config.Tool.csproj +++ b/src/Config.Tool/Config.Tool.csproj @@ -52,6 +52,10 @@ Other + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/src/Config.Tool/readme.md b/src/Config.Tool/readme.md new file mode 100644 index 0000000..f7599d8 --- /dev/null +++ b/src/Config.Tool/readme.md @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/src/Config/Config.csproj b/src/Config/Config.csproj index 049f8ed..9c5c84b 100644 --- a/src/Config/Config.csproj +++ b/src/Config/Config.csproj @@ -33,6 +33,10 @@ Usage: + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/src/Configuration/Configuration.csproj b/src/Configuration/Configuration.csproj index ace4925..2166517 100644 --- a/src/Configuration/Configuration.csproj +++ b/src/Configuration/Configuration.csproj @@ -21,6 +21,10 @@ Note: section is required and subsection is optional, just like in dotnet-config + + all + runtime; build; native; contentfiles; analyzers; buildtransitive +