Skip to content

Commit

Permalink
Allow symbols to be packed
Browse files Browse the repository at this point in the history
  • Loading branch information
mnadareski committed Dec 20, 2024
1 parent 3df93fb commit 19cedfc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: 'Nuget Package'
path: '*.nupkg'
path: "*.nupkg,*.snupkg"

- name: Upload to rolling
uses: ncipollo/[email protected]
with:
allowUpdates: True
artifacts: "*.nupkg,*.zip"
artifacts: "*.nupkg,*.snupkg,*.zip"
body: 'Last built commit: ${{ github.sha }}'
name: 'Rolling Release'
prerelease: True
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
run: dotnet build

- name: Test
run: dotnet test
run: dotnet test
1 change: 1 addition & 0 deletions CHANGELIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
- Better SecuROM handling for DIC and Redumper
- Include native libraries for self-extract
- Preserve program metadata on publish
- Allow symbols to be packed

### 3.2.4 (2024-11-24)

Expand Down
2 changes: 2 additions & 0 deletions MPF.ExecutionContexts/MPF.ExecutionContexts.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
<TargetFrameworks>net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<IncludeSymbols>true</IncludeSymbols>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<VersionPrefix>3.2.4</VersionPrefix>
<WarningsNotAsErrors>NU5104</WarningsNotAsErrors>
Expand Down
2 changes: 2 additions & 0 deletions MPF.Processors/MPF.Processors.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
<TargetFrameworks>net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<IncludeSymbols>true</IncludeSymbols>
<LangVersion>latest</LangVersion>
<NoWarn>NU1902;NU1903</NoWarn>
<Nullable>enable</Nullable>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<VersionPrefix>3.2.4</VersionPrefix>
<WarningsNotAsErrors>NU5104</WarningsNotAsErrors>
Expand Down

0 comments on commit 19cedfc

Please sign in to comment.