diff --git a/src/System.CommandLine.Extensions.SourceGenerators/System.CommandLine.Extensions.SourceGenerators.csproj b/src/System.CommandLine.Extensions.SourceGenerators/System.CommandLine.Extensions.SourceGenerators.csproj index f18a2a6..d82afc2 100644 --- a/src/System.CommandLine.Extensions.SourceGenerators/System.CommandLine.Extensions.SourceGenerators.csproj +++ b/src/System.CommandLine.Extensions.SourceGenerators/System.CommandLine.Extensions.SourceGenerators.csproj @@ -1,18 +1,19 @@ - netstandard2.0 enable enable latest + netstandard2.0 + true - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/src/System.CommandLine.Extensions/System.CommandLine.Extensions.csproj b/src/System.CommandLine.Extensions/System.CommandLine.Extensions.csproj index e2aeffe..2da30ba 100644 --- a/src/System.CommandLine.Extensions/System.CommandLine.Extensions.csproj +++ b/src/System.CommandLine.Extensions/System.CommandLine.Extensions.csproj @@ -1,11 +1,10 @@ - netstandard2.1 2.0.0-beta4.22272.1 Matthias Friedrich A slim command configuration and execution layer similar to Microsoft.Extensions.CommandlineUtils. - 2020 - 2022 by Matthias Friedrich + 2020 - 2024 by Matthias Friedrich https://github.com/matzefriedrich/command-line-api-extensions git CLI @@ -14,6 +13,7 @@ README.md 2.0.0.0 2.0.0.0 + net8.0 @@ -42,9 +42,9 @@ - + True - \ + / diff --git a/src/System.CommandLine.Extensions/docs/README.md b/src/System.CommandLine.Extensions/docs/README.md index 206086c..edd46c4 100644 --- a/src/System.CommandLine.Extensions/docs/README.md +++ b/src/System.CommandLine.Extensions/docs/README.md @@ -5,7 +5,7 @@ A slim command configuration and execution layer similar to `Microsoft.Extension ````csharp private static int Main(string[] args) { - var app = new CommandlineApplication(); + var app = new CommandLineApplication(); app.Command("greeting", "Greets the specified person.", greeting => { diff --git a/src/demo/demo.csproj b/src/demo/demo.csproj index 60e32a0..7b23aec 100644 --- a/src/demo/demo.csproj +++ b/src/demo/demo.csproj @@ -2,7 +2,8 @@ Exe - netcoreapp3.1 + net8.0 + enable