diff --git a/template_feed/Microsoft.DotNet.Common.ProjectTemplates.6.0/content/ClassLibrary-CSharp/Company.ClassLibrary1.csproj b/template_feed/Microsoft.DotNet.Common.ProjectTemplates.6.0/content/ClassLibrary-CSharp/Company.ClassLibrary1.csproj
index 8df822dd268..5e66d4b4234 100644
--- a/template_feed/Microsoft.DotNet.Common.ProjectTemplates.6.0/content/ClassLibrary-CSharp/Company.ClassLibrary1.csproj
+++ b/template_feed/Microsoft.DotNet.Common.ProjectTemplates.6.0/content/ClassLibrary-CSharp/Company.ClassLibrary1.csproj
@@ -5,7 +5,7 @@
TargetFrameworkOverride
Company.ClassLibrary1
$(ProjectLanguageVersion)
- enable
+ enable
diff --git a/test/dotnet-new3.UnitTests/CommonTemplatesTests.cs b/test/dotnet-new3.UnitTests/CommonTemplatesTests.cs
index 0adc2fd6882..889b4b9568d 100644
--- a/test/dotnet-new3.UnitTests/CommonTemplatesTests.cs
+++ b/test/dotnet-new3.UnitTests/CommonTemplatesTests.cs
@@ -63,6 +63,9 @@ public CommonTemplatesTests(SharedHomeDirectory fixture, ITestOutputHelper log)
[InlineData("Class Library", "classlib", "C#", "netcoreapp2.1")]
[InlineData("Class Library", "classlib", "F#", "netcoreapp2.1")]
[InlineData("Class Library", "classlib", "VB", "netcoreapp2.1")]
+ [InlineData("Class Library", "classlib", "C#", "netstandard2.0")]
+ [InlineData("Class Library", "classlib", "VB", "netstandard2.0")]
+ [InlineData("Class Library", "classlib", "F#", "netstandard2.0")]
[InlineData("Simple Console Application", "app")]
[InlineData("Simple Console Application", "app", "C#")]
@@ -167,6 +170,9 @@ Determining projects to restore\.\.\.
[InlineData("Class Library", "classlib", "C#", "netcoreapp2.1")]
[InlineData("Class Library", "classlib", "F#", "netcoreapp2.1")]
[InlineData("Class Library", "classlib", "VB", "netcoreapp2.1")]
+ [InlineData("Class Library", "classlib", "C#", "netstandard2.0")]
+ [InlineData("Class Library", "classlib", "VB", "netstandard2.0")]
+ [InlineData("Class Library", "classlib", "F#", "netstandard2.0")]
[InlineData("Simple Console Application", "app")]
[InlineData("Simple Console Application", "app", "C#")]
@@ -306,7 +312,7 @@ public void SetPropertiesByDefault(string propertyName, string? propertyValue, s
}
[Theory]
- //unset nullable
+ //unset nullable
[InlineData("Nullable", null, "--nullable", "false", "Simple Console Application", "app", null, null)]
[InlineData("Nullable", null, "--nullable", "false", "Class Library", "classlib", null, null)]