From c975e0e886a5b51f32d7ece9d42f2fa8e019caa3 Mon Sep 17 00:00:00 2001 From: lightyears Date: Sun, 19 Feb 2023 00:07:09 +0800 Subject: [PATCH] Update project settings --- .editorconfig | 7 +++++++ .gitignore | 6 ++++++ CMSGame.csproj | 7 +++++-- GlobalUsings.cs | 2 ++ 4 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 .editorconfig create mode 100644 GlobalUsings.cs diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..83e1862 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*.{cs,vb}] +dotnet_diagnostic.CA1050.severity = none diff --git a/.gitignore b/.gitignore index 4709183..801d1f5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,8 @@ # Godot 4+ specific ignores .godot/ + +# IDE +.vscode + +# Temporary assets +Assets diff --git a/CMSGame.csproj b/CMSGame.csproj index 4b7499a..d3d9ffb 100644 --- a/CMSGame.csproj +++ b/CMSGame.csproj @@ -1,6 +1,9 @@ - + net6.0 true - \ No newline at end of file + + + + diff --git a/GlobalUsings.cs b/GlobalUsings.cs new file mode 100644 index 0000000..644b8a7 --- /dev/null +++ b/GlobalUsings.cs @@ -0,0 +1,2 @@ +global using System; +global using Godot;