Skip to content

Commit

Permalink
BE-14954: Allow symbols & package URL validations.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubsemerak committed Mar 6, 2024
1 parent 15cb9a0 commit 6fe02e9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
# If some rules are not applicable, you can disable them
# using the --excluded-rules or --excluded-rule-ids option
- name: Validate package
run: meziantou.validate-nuget-package (Get-ChildItem "${{ env.NuGetDirectory }}/*.nupkg") --excluded-rules Symbols --excluded-rule-ids 52
run: meziantou.validate-nuget-package (Get-ChildItem "${{ env.NuGetDirectory }}/*.nupkg")

dotnet-tests:
uses: ./.github/workflows/dotnet-tests.yml
Expand Down
8 changes: 7 additions & 1 deletion dotnet/UneceGenerator/UneceUnits/UneceUnits.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@
</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/quadient/unece-units/releases/</PackageReleaseNotes>

<!-- Generate XML documentation -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>CS0618,CS1591</NoWarn>
<PackageIcon>quadient.png</PackageIcon>
<EnablePackageValidation>true</EnablePackageValidation>
</PropertyGroup>

<ItemGroup>
Expand All @@ -30,6 +31,11 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>

<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath=""/>
Expand Down

0 comments on commit 6fe02e9

Please sign in to comment.