diff --git a/.github/workflows/wf-verify-formatting.yml b/.github/workflows/wf-verify-formatting.yml index 9f7b060b..6c443160 100644 --- a/.github/workflows/wf-verify-formatting.yml +++ b/.github/workflows/wf-verify-formatting.yml @@ -26,5 +26,5 @@ jobs: - name: Restore NuGet Packages run: dotnet restore - - name: Build library - run: dotnet format --verify-no-changes --verbosity detailed + - name: Format QRCoder + run: dotnet format --verify-no-changes --severity error diff --git a/Directory.Build.props b/Directory.Build.props index 1993bc9e..b2ffd159 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -3,5 +3,6 @@ 10 true $(WarningsNotAsErrors);IDE0005 + false diff --git a/QRCoder.Xaml/QRCoder.Xaml.csproj b/QRCoder.Xaml/QRCoder.Xaml.csproj index 28d890fd..c72e7ef3 100644 --- a/QRCoder.Xaml/QRCoder.Xaml.csproj +++ b/QRCoder.Xaml/QRCoder.Xaml.csproj @@ -7,7 +7,6 @@ true $(DefineConstants);NET5_0_WINDOWS $(DefineConstants);NET6_0_WINDOWS - false true diff --git a/QRCoder.sln b/QRCoder.sln index d96aac96..49102939 100644 --- a/QRCoder.sln +++ b/QRCoder.sln @@ -56,6 +56,7 @@ Global {AA6BE23A-7813-4D2A-835E-B673631AE9F1}.Release|x86.ActiveCfg = Release|Any CPU {AA6BE23A-7813-4D2A-835E-B673631AE9F1}.Release|x86.Build.0 = Release|Any CPU {014F04C6-6099-4552-9A4F-D09C6E39D576}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {014F04C6-6099-4552-9A4F-D09C6E39D576}.Debug|Any CPU.Build.0 = Debug|Any CPU {014F04C6-6099-4552-9A4F-D09C6E39D576}.Debug|ARM.ActiveCfg = Debug|Any CPU {014F04C6-6099-4552-9A4F-D09C6E39D576}.Debug|ARM.Build.0 = Debug|Any CPU {014F04C6-6099-4552-9A4F-D09C6E39D576}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -70,6 +71,7 @@ Global {014F04C6-6099-4552-9A4F-D09C6E39D576}.Release|x86.ActiveCfg = Release|Any CPU {014F04C6-6099-4552-9A4F-D09C6E39D576}.Release|x86.Build.0 = Release|Any CPU {CA6DB0F5-DB6C-4DDD-8B5F-EF82FBB963E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CA6DB0F5-DB6C-4DDD-8B5F-EF82FBB963E9}.Debug|Any CPU.Build.0 = Debug|Any CPU {CA6DB0F5-DB6C-4DDD-8B5F-EF82FBB963E9}.Debug|ARM.ActiveCfg = Debug|x86 {CA6DB0F5-DB6C-4DDD-8B5F-EF82FBB963E9}.Debug|x64.ActiveCfg = Debug|x86 {CA6DB0F5-DB6C-4DDD-8B5F-EF82FBB963E9}.Debug|x86.ActiveCfg = Debug|Any CPU diff --git a/QRCoder/QRCoder.csproj b/QRCoder/QRCoder.csproj index 8fb17e5b..1fa8abf8 100644 --- a/QRCoder/QRCoder.csproj +++ b/QRCoder/QRCoder.csproj @@ -7,7 +7,6 @@ $(DefineConstants);SYSTEM_DRAWING $(DefineConstants);NET5_0_WINDOWS $(DefineConstants);NET6_0_WINDOWS - false true true $(WarningsAsErrors);CS1591 diff --git a/QRCoderTests/QRCoderTests.csproj b/QRCoderTests/QRCoderTests.csproj index 9f7ab90b..2c2cf5c8 100644 --- a/QRCoderTests/QRCoderTests.csproj +++ b/QRCoderTests/QRCoderTests.csproj @@ -10,7 +10,6 @@ $(DefineConstants);NET6_0_WINDOWS false true - false true $(NoWarn);NU1903