Skip to content

Commit

Permalink
suppress xml warnings on build
Browse files Browse the repository at this point in the history
  • Loading branch information
kMutagene committed Mar 7, 2024
1 parent fd10f49 commit b08be04
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,6 @@ jobs:
needs: setup
# https://github.com/actions/runner/issues/1173
if: (needs.setup.outputs.tests_any_changed == 'true' || needs.setup.outputs.api_any_changed == 'true' || needs.setup.outputs.client_any_changed == 'true' || needs.setup.outputs.index_any_changed == 'true') && needs.setup.outputs.is_dry_run == 'false'
uses: nfdi4plants/arc-validate-package-registry/.github/workflows/build-and-test.yml@main
uses: nfdi4plants/arc-validate-package-registry/.github/workflows/build-and-test.yml@main


4 changes: 4 additions & 0 deletions src/AVPRClient/AVPRClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(DesignTimeBuild)' != 'true'">
<NoWarn>CS1591;$(NoWarn)</NoWarn>
</PropertyGroup>

<PropertyGroup>
<Authors>Kevin Schneider</Authors>
<Description>.NET client library for avpr.nfdi4plants.org</Description>
Expand Down
4 changes: 4 additions & 0 deletions src/PackageRegistryService/PackageRegistryService.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(DesignTimeBuild)' != 'true'">
<NoWarn>CS1591;$(NoWarn)</NoWarn>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.1" />
Expand Down

0 comments on commit b08be04

Please sign in to comment.