Skip to content

Commit

Permalink
Merge pull request #51 from enisn/source-linking
Browse files Browse the repository at this point in the history
Source linking
  • Loading branch information
enisn authored Feb 15, 2022
2 parents f58720a + 57e816e commit 9e09cd2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnetcore-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
- name: Pack
run: dotnet pack -o packages --configuration Release
- name: Push
run: dotnet nuget push 'packages/*.nupkg' --source ${{secrets.NUGET_SOURCE}} --api-key ${{secrets.NUGET_KEY}} --skip-duplicate
run: dotnet nuget push 'packages/*.symbols.nupkg' --source ${{secrets.NUGET_SOURCE}} --api-key ${{secrets.NUGET_KEY}} --skip-duplicate
#continue-on-error: true
6 changes: 5 additions & 1 deletion common.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>2.11.0</Version>
<Version>2.12.0</Version>
<Authors>enisn</Authors>
<Description>A Filtering framework. The main purpose of the library is to generate LINQ expressions for Entities over DTOs automatically.</Description>
<PackageReleaseNotes>New query types were added.</PackageReleaseNotes>
Expand All @@ -13,6 +13,10 @@
<DefineConstants>LEGACY_NAMESPACE</DefineConstants>
<PackageIcon>auto_filterer_icon.png</PackageIcon>
<LangVersion>latest</LangVersion>

<!--Source-Linking-->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 9e09cd2

Please sign in to comment.