Skip to content

Commit 24eddda

Browse files
committed
Allow symbols to be packed
1 parent 3257b59 commit 24eddda

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
uses: actions/upload-artifact@v4
2929
with:
3030
name: 'Nuget Package'
31-
path: '*.nupkg'
31+
path: "*.nupkg,*.snupkg"
3232

3333
- name: Upload to rolling
3434
uses: ncipollo/[email protected]
3535
with:
3636
allowUpdates: True
37-
artifacts: "*.nupkg,*.zip"
37+
artifacts: "*.nupkg,*.snupkg,*.zip"
3838
body: 'Last built commit: ${{ github.sha }}'
3939
name: 'Rolling Release'
4040
prerelease: True

.github/workflows/check_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
run: dotnet build
1818

1919
- name: Run tests
20-
run: dotnet test
20+
run: dotnet test

BinaryObjectScanner/BinaryObjectScanner.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@
66
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
77
<CheckEolTargetFramework>false</CheckEolTargetFramework>
88
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
9+
<IncludeSymbols>true</IncludeSymbols>
910
<LangVersion>latest</LangVersion>
1011
<NoWarn>CS0162;CS0612</NoWarn>
1112
<Nullable>enable</Nullable>
1213
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
14+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1315
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1416
<Version>3.3.2</Version>
1517
<!-- Mostly added due to external libraries -->

0 commit comments

Comments
 (0)