From 620401a8963ee07ac266732213e07de02a43e636 Mon Sep 17 00:00:00 2001 From: Jonathon Marolf Date: Mon, 17 May 2021 14:00:06 -0700 Subject: [PATCH] add new help output to the test --- test/dotnet-new3.UnitTests/DotnetNewHelp.cs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/test/dotnet-new3.UnitTests/DotnetNewHelp.cs b/test/dotnet-new3.UnitTests/DotnetNewHelp.cs index 4c9e3a78bd5..5fc5ec81e03 100644 --- a/test/dotnet-new3.UnitTests/DotnetNewHelp.cs +++ b/test/dotnet-new3.UnitTests/DotnetNewHelp.cs @@ -62,7 +62,11 @@ public class DotnetNewHelp --no-restore If specified, skips the automatic restore of the project on create. bool - Optional - Default: false "; + Default: false + + --nullable Whether to enable nullable reference types for this project. + bool - Optional + Default: true "; private const string ClassLibHelp = @"Class Library (C#) @@ -95,7 +99,11 @@ public class DotnetNewHelp --no-restore If specified, skips the automatic restore of the project on create. bool - Optional - Default: false "; + Default: false + + --nullable Whether to enable nullable reference types for this project. + bool - Optional + Default: true "; #endregion private readonly ITestOutputHelper _log;