Skip to content

Commit c2a5931

Browse files
committed
Everywhere: Disable warning for CS1591
This warning relates to missing XML comment, they are not critical. Currently they are flooding the build logs on the build server so hard to see warnings that are really important.
1 parent 21cd9fd commit c2a5931

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

src/Helsenorge.Messaging.AdminLib/Helsenorge.Messaging.AdminLib.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>disable</ImplicitUsings>
66
<Nullable>disable</Nullable>
7+
<NoWarn>CS1591</NoWarn>
78
</PropertyGroup>
89

910
<ItemGroup>

src/Helsenorge.Messaging/Helsenorge.Messaging.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
1111
<SignAssembly>false</SignAssembly>
1212
<PackageId>Helsenorge.Messaging</PackageId>
13+
<NoWarn>CS1591</NoWarn>
1314
</PropertyGroup>
1415

1516
<ItemGroup>

src/Helsenorge.Registries/Helsenorge.Registries.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
1313
<SignAssembly>false</SignAssembly>
1414
<PackageId>Helsenorge.Registries</PackageId>
15+
<NoWarn>CS1591</NoWarn>
1516
</PropertyGroup>
1617

1718
<ItemGroup>

test/Helsenorge.Messaging.Tests.Mocks/Helsenorge.Messaging.Tests.Mocks.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>disable</ImplicitUsings>
66
<Nullable>disable</Nullable>
7+
<NoWarn>CS1591</NoWarn>
78
</PropertyGroup>
89

910
<ItemGroup>

0 commit comments

Comments
 (0)