File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3535 run : |
3636 $OutputDir = "nuget-packages"
3737 New-Item -ItemType Directory -Force -Path $OutputDir
38- Get-ChildItem -Path . -Recurse -Filter *.nupkg | Copy-Item -Destination $OutputDir
38+ Get-ChildItem -Path . -Recurse -Include *.nupkg,*.snupkg | Copy-Item -Destination $OutputDir
3939
4040 - name : Upload NuGet packages as artifacts
4141 uses : actions/upload-artifact@v4
7171 NUGET_API_KEY : ${{ secrets.NUGET_API_KEY }}
7272 run : |
7373 dotnet nuget push ./nuget-packages/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json
74+ dotnet nuget push ./nuget-packages/*.snupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json
Original file line number Diff line number Diff line change 2121 <PackageTags >http server lightweight self-contained sse iot desktop tools diagnostics</PackageTags >
2222 <IncludeSymbols >true</IncludeSymbols >
2323 <SymbolPackageFormat >snupkg</SymbolPackageFormat >
24+ <EmbedUntrackedSources >true</EmbedUntrackedSources >
25+ <ContinuousIntegrationBuild Condition =" '$(ContinuousIntegrationBuild)'=='' and '$(CI)'!=''" >true</ContinuousIntegrationBuild >
2426
2527 <!-- General build properties -->
2628 <Nullable >enable</Nullable >
You can’t perform that action at this time.
0 commit comments