File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed
Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 8282
8383 - name : publish
8484 working-directory : ./src
85- run : dotnet nuget push **/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
85+ run : dotnet nuget push **/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --no-symbols true
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ jobs:
1515 with :
1616 dotnet-version : 3.1.100
1717
18- - name : pack binary
18+ - name : pack code
1919 working-directory : ./src
20- run : dotnet pack ./ExpressionShortcuts/ExpressionShortcuts.csproj -c Release /p:version=${{ github.event.release.tag_name }}
21-
20+ run : dotnet pack ./ExpressionShortcuts/ExpressionShortcuts.Source. csproj /p:version=${{ github.event.release.tag_name }}
21+
2222 - name : publish
2323 working-directory : ./src
24- run : dotnet nuget push **/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
24+ run : dotnet nuget push **/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --no-symbols true
Original file line number Diff line number Diff line change 99 <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
1010 <IsPackable >true</IsPackable >
1111 <Configuration >Source</Configuration >
12+ <IncludeSymbols >false</IncludeSymbols >
1213 </PropertyGroup >
1314
1415 <PropertyGroup >
1718 <Description >A set of APIs for to simplify work with System.Linq.Expressions</Description >
1819 <PackageIcon >images\icon.png</PackageIcon >
1920 <PackageId >ExpressionShortcuts</PackageId >
20- <PackageLicense >https://opensource.org/licenses/mit</ PackageLicense >
21+ <PackageLicenseUrl >https://github.com/zjklee/ExpressionShortcuts/blob/master/LICENSE</ PackageLicenseUrl >
2122 <PackageProjectUrl >https://github.com/zjklee/ExpressionShortcuts</PackageProjectUrl >
22- <PackageTags >expression-tree;expressions</PackageTags >
23+ <PackageTags >expression;tree;expression -tree;expressions</PackageTags >
2324 <RepositoryType >git</RepositoryType >
2425 <RepositoryUrl >https://github.com/zjklee/ExpressionShortcuts</RepositoryUrl >
2526 <GenerateDocumentationFile >true</GenerateDocumentationFile >
4243 <DisableImplicitFrameworkReferences >true</DisableImplicitFrameworkReferences >
4344 <GenerateAssemblyInfo >false</GenerateAssemblyInfo >
4445 <GenerateTargetFrameworkAttribute >false</GenerateTargetFrameworkAttribute >
45- <PackageId >$(PackageId).Sources </PackageId >
46+ <PackageId >$(PackageId)</PackageId >
4647 </PropertyGroup >
4748
4849 <ItemGroup Condition =" '$(TargetFramework)'=='netstandard1.3'" >
You can’t perform that action at this time.
0 commit comments