Skip to content

Commit

Permalink
The most significant changes include the modification of diagnostic w…
Browse files Browse the repository at this point in the history
…arning severities and styles in the .editorconfig file, the addition of the .editorconfig file to the Solution Items project in the EasyDbMigrator.sln file, and the setting of the GenerateDocumentationFile property to true in multiple .csproj files. Additionally, the TargetFrameworks property has been updated to include net8.0 in two .csproj files.

1. The .editorconfig file has seen changes in the severity of the CA1510 and CS1591 diagnostics.

2. The .editorconfig file has been added to the Solution Items project in the EasyDbMigrator.sln file.

3. The GenerateDocumentationFile property has been set to true in the EasyDbMigrator.csproj file, the EasyDbMigratorTests.csproj file, the ExampleTestLibWithPostgreSQLServerScripts.csproj file, and the ExampleTestLibWithSqlServerScripts.csproj file.

4. The TargetFrameworks property has been updated to include net8.0 in the ExampleTestLibWithPostgreSQLServerScripts.csproj file and the ExampleTestLibWithSqlServerScripts.csproj file.
  • Loading branch information
Retrodad0001 committed Feb 25, 2024
1 parent c0d412e commit 4b1cca0
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,9 @@ dotnet_diagnostic.CA1510.severity = warning
dotnet_diagnostic.CA1859.severity = warning
csharp_style_prefer_primary_constructors = true:suggestion

# CS1591: Missing XML comment for publicly visible type or member
dotnet_diagnostic.CS1591.severity = none

[*.{cs,vb}]
dotnet_style_operator_placement_when_wrapping = beginning_of_line
tab_width = 4
Expand Down Expand Up @@ -355,4 +358,4 @@ dotnet_diagnostic.IDE0270.severity = none

# IDE0060: Remove unused parameter
dotnet_diagnostic.IDE0060.severity = warning
dotnet_style_prefer_collection_expression = false:suggestion
dotnet_style_prefer_collection_expression = never:suggestion
1 change: 1 addition & 0 deletions EasyDbMigrator.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EasyDbMigratorTests", "Easy
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6F223ADD-7137-481D-A871-D44C9FF8DE15}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
Help.txt = Help.txt
EndProjectSection
EndProject
Expand Down
1 change: 1 addition & 0 deletions EasyDbMigrator/EasyDbMigrator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>3.0.3</Version>
<PackageId>Retrodad.EasyDbMigrator</PackageId>
<Description>EasyDbMigrator is a database migration framework written in C#. It can be used for integration testing on your local machine or in CI/CD Pipelines or for manual migrations.</Description>
Expand Down
1 change: 1 addition & 0 deletions EasyDbMigratorTests/EasyDbMigratorTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>false</IsPackable>
<Nullable>annotations</Nullable>
<PackageProjectUrl>https://github.com/Retrodad0001/EasyDbMigrator</PackageProjectUrl>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageProjectUrl>https://github.com/Retrodad0001/EasyDbMigrator</PackageProjectUrl>
<RepositoryUrl>https://github.com/Retrodad0001/EasyDbMigrator</RepositoryUrl>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageProjectUrl>https://github.com/Retrodad0001/EasyDbMigrator</PackageProjectUrl>
<RepositoryUrl>https://github.com/Retrodad0001/EasyDbMigrator</RepositoryUrl>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
Expand Down

0 comments on commit 4b1cca0

Please sign in to comment.