Skip to content

Commit

Permalink
Code: updated infrastructure
Browse files Browse the repository at this point in the history
  • Loading branch information
SAKryukov committed Dec 26, 2024
1 parent e71d1c1 commit c8bb2fb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions code/.editorconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[*.{cs}]

csharp_new_line_before_open_brace = none
trim_trailing_whitespace = true
insert_final_newline = true

# IDE0130: Namespace does not match folder structure
dotnet_diagnostic.IDE0130.severity = none
4 changes: 2 additions & 2 deletions code/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<PropertyGroup> <!-- customize: -->
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>SA</RootNamespace>
<RootNamespace>$(RootNamespace)</RootNamespace>
</PropertyGroup>

<PropertyGroup> <!-- change value, don't change property name: -->
Expand All @@ -24,7 +24,7 @@

<PropertyGroup>

<NoWarn>$(NoWarn);NETSDK1138</NoWarn>
<NoWarn>$(NoWarn);NETSDK1138;IDE0130</NoWarn>

<BaseIntermediateOutputPath>$([System.IO.Path]::Combine(
$(SolutionDir),
Expand Down
4 changes: 4 additions & 0 deletions code/Metadata.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,8 @@
<AssemblyTitle>$(Product) Demo</AssemblyTitle>
</PropertyGroup>

<PropertyGroup> <!-- customize: -->
<RootNamespace>SA</RootNamespace>
</PropertyGroup>

</Project>

0 comments on commit c8bb2fb

Please sign in to comment.