include symbols and source into the project
Some checks failed
Publish NuGets / build (release) Failing after 12s

This commit is contained in:
Mathias Beaulieu-Duncan 2024-12-22 12:10:29 -05:00
parent 2e4a8b6d98
commit 6bebdf916c
Signed by: mathias
GPG Key ID: 8C3667DADE3B6303
3 changed files with 7 additions and 3 deletions

View File

@ -32,9 +32,7 @@ jobs:
- name: Build and Pack NuGet Package - name: Build and Pack NuGet Package
run: dotnet pack -c Release -o ./artifacts \ run: dotnet pack -c Release -o ./artifacts \
-p:Version=${{ env.RELEASE_VERSION }} \ -p:Version=${{ env.RELEASE_VERSION }}
-p:IncludeSymbols=true \
-p:IncludeSource=true
- name: Validate NuGet Package - name: Validate NuGet Package
run: dotnet nuget verify ./artifacts/*.nupkg run: dotnet nuget verify ./artifacts/*.nupkg

View File

@ -12,6 +12,9 @@
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl> <PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression> <PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@ -12,6 +12,9 @@
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl> <PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression> <PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>