From 66731e3f480ceb5b5d6bcd78e1067c6013aff797 Mon Sep 17 00:00:00 2001 From: Dan Date: Sun, 26 Sep 2021 22:02:02 -0600 Subject: [PATCH] Add .netstandard 2.0 target --- src/Vertical.CommandLine.csproj | 7 ++++++- src/Vertical/CommandLine/CommandLineApplication.cs | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Vertical.CommandLine.csproj b/src/Vertical.CommandLine.csproj index 03b6589..1531b03 100644 --- a/src/Vertical.CommandLine.csproj +++ b/src/Vertical.CommandLine.csproj @@ -1,6 +1,7 @@  - netstandard2.1;net5.0 + netstandard2.0;netstandard2.1;net5.0 + 8.0 True true @@ -28,4 +29,8 @@ + + + + diff --git a/src/Vertical/CommandLine/CommandLineApplication.cs b/src/Vertical/CommandLine/CommandLineApplication.cs index 215561b..6c240b8 100644 --- a/src/Vertical/CommandLine/CommandLineApplication.cs +++ b/src/Vertical/CommandLine/CommandLineApplication.cs @@ -94,7 +94,7 @@ public static void ShowHelp(ICommandLineConfiguration configuration, ? new[] {helpToken} : new[] {command, helpToken}; - Run(configuration, args); + Run(configuration, args!); } } } \ No newline at end of file