hello world

This commit is contained in:
2025-10-03 02:10:17 +08:00
parent 02909d92c1
commit 0b1e060611
7 changed files with 81 additions and 2 deletions
+21
View File
@@ -0,0 +1,21 @@
root = true
[*]
charset = utf-8
# IDE0130: 命名空间与文件夹结构不匹配
dotnet_style_namespace_match_folder = false
# CS4014: 由于此调用不会等待,因此在调用完成前将继续执行当前方法
dotnet_diagnostic.CS4014.severity = none
# CA1822: 将成员标记为 static
dotnet_diagnostic.CA1822.severity = none
# formating
csharp_new_line_before_open_brace = none
csharp_new_line_before_else = none
csharp_new_line_before_catch = none
csharp_new_line_before_finally = none
csharp_new_line_before_members_in_object_initializers = none
csharp_new_line_before_members_in_anonymous_types = none
csharp_new_line_between_query_expression_clauses = none