From 7a0ccb942cac102be8770e59e9687e4a3d2667bf Mon Sep 17 00:00:00 2001 From: Vlada Shubina Date: Tue, 6 Jul 2021 12:49:33 +0300 Subject: [PATCH] dotnet/templating#3360 using file-scoped namespaces in classlib template --- .../content/ClassLibrary-CSharp/Class1.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/template_feed/Microsoft.DotNet.Common.ProjectTemplates.6.0/content/ClassLibrary-CSharp/Class1.cs b/template_feed/Microsoft.DotNet.Common.ProjectTemplates.6.0/content/ClassLibrary-CSharp/Class1.cs index a6325f3fb1b..1f05f4b87c6 100644 --- a/template_feed/Microsoft.DotNet.Common.ProjectTemplates.6.0/content/ClassLibrary-CSharp/Class1.cs +++ b/template_feed/Microsoft.DotNet.Common.ProjectTemplates.6.0/content/ClassLibrary-CSharp/Class1.cs @@ -1,6 +1,6 @@ -namespace Company.ClassLibrary1 +namespace Company.ClassLibrary1; + +public class Class1 { - public class Class1 - { - } + }