From ce68b2fd0b0e65be65cda63830318a349d0ffd92 Mon Sep 17 00:00:00 2001 From: Playwright Service <89237858+playwrightmachine@users.noreply.github.com> Date: Tue, 13 Sep 2022 09:53:10 -0700 Subject: [PATCH] chery-pick(#17248): chore(dotnet): use csharp 10 namespace declaration (#17305) This PR cherry-picks the following commits: - 0b4de0df7f51fecdf68572ef30bce9044552e58f Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- utils/doclint/templates/interface.cs | 7 +++---- utils/generate_dotnet_channels.js | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/utils/doclint/templates/interface.cs b/utils/doclint/templates/interface.cs index e2b3da3c1f..a0fadccb2d 100644 --- a/utils/doclint/templates/interface.cs +++ b/utils/doclint/templates/interface.cs @@ -37,9 +37,8 @@ using System.Threading.Tasks; #nullable enable -namespace Microsoft.Playwright -{ - [CONTENT] -} +namespace Microsoft.Playwright; + +[CONTENT] #nullable disable diff --git a/utils/generate_dotnet_channels.js b/utils/generate_dotnet_channels.js index cc25ffb6f7..8a65e64697 100644 --- a/utils/generate_dotnet_channels.js +++ b/utils/generate_dotnet_channels.js @@ -183,14 +183,14 @@ fs.mkdirSync(dir, { recursive: true }); for (const [name, item] of Object.entries(protocol)) { if (item.type === 'interface') { - const init = objectType(item.initializer || {}, ' '); + const init = objectType(item.initializer || {}, ''); const initializerName = name + 'Initializer'; const superName = inherits.has(name) ? inherits.get(name) + 'Initializer' : null; writeCSharpClass(initializerName, superName, init.ts); } else if (item.type === 'object') { if (Object.keys(item.properties).length === 0) continue; - const init = objectType(item.properties, ' ', false, name); + const init = objectType(item.properties, '', false, name); writeCSharpClass(name, null, init.ts); } }