Skip to content

Commit 5a55876

Browse files
committed
Tweaks for symbol files
1 parent a71f11d commit 5a55876

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/nuget-publish.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: Publish
33
on:
44
release:
55
types: [published]
6-
tags: [release/**]
76

87
jobs:
98
Validation:
@@ -18,11 +17,10 @@ jobs:
1817
with:
1918
dotnet-version: 5.0.x
2019
- name: Get Version Number
21-
shell: bash
2220
run: echo "PACKAGE_VERSION=${GITHUB_REF#refs/tags/release/*}" >> $GITHUB_ENV
2321
- name: Pack
24-
run: dotnet pack -p:PackageVersion=$PACKAGE_VERSION
25-
- name: Push to Nuget.org
22+
run: dotnet pack -p:PackageVersion=$PACKAGE_VERSION --configuration Release
23+
- name: Push to NuGet.org
2624
run: |-
2725
echo "::add-mask::${{ secrets.NUGET_ORG_KEY }}"
28-
dotnet nuget push **/*.nupkg --api-key ${{ secrets.NUGET_ORG_KEY }} --source https://api.nuget.org/v3/index.json
26+
dotnet nuget push **/*.nupkg --api-key ${{ secrets.NUGET_ORG_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate

Directory.Build.props

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@
1111
<PropertyGroup>
1212
<PublishRepositoryUrl>true</PublishRepositoryUrl>
1313
<IncludeSymbols>true</IncludeSymbols>
14+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1415
<EmbedUntrackedSources>true</EmbedUntrackedSources>
1516
<Authors>Ethan Shea</Authors>
1617
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
1718
<Description>FuzzDotNet is a library enabling fuzz-testing and the generation synthetic application data.</Description>
19+
<PackageTags>testing;FuzzDotNet;unit test;fuzz test</PackageTags>
20+
<PackageProjectUrl>https://github.com/pensono/FuzzDotNet</PackageProjectUrl>
1821
</PropertyGroup>
1922

2023
<ItemGroup>

src/dirs.proj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
<ItemGroup>
55
<ProjectReference Include="Core/FuzzDotNet.Core.csproj" />
66
<ProjectReference Include="MSTest/FuzzDotNet.MSTest.csproj" />
7+
<ProjectReference Include="Xunit/FuzzDotNet.Xunit.csproj" />
78
</ItemGroup>
89
</Project>

0 commit comments

Comments
 (0)