Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:
- name: Install ffmpeg
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg
sudo apt-get install -y ffmpeg libsvtav1enc2

Comment on lines +227 to 228
- name: Clone and optimize all osu-resources from GitHub
run: |
Expand Down
8 changes: 7 additions & 1 deletion osu.Android.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@
unmanaged function pointers, reflection-based handle discovery).
The default runtime-generated trampolines are slower but proven reliable. -->
<AndroidEnableMarshalMethods>false</AndroidEnableMarshalMethods>
<NoWarn>$(NoWarn);NU1608;XA4301</NoWarn>
<!-- IL2007: "Could not resolve assembly" emitted by ILLink when it processes
Linker.xml descriptor entries for assemblies that are not yet in the search
path at descriptor-parse time (ppy.osu.Framework and ppy.osu.Framework.Android).
SuppressTrimAnalysisWarnings=true covers the broader IL2xxx range during the
trim pass; IL2007 is added here explicitly so it is also suppressed during the
earlier descriptor-validation phase and does not appear as a build annotation. -->
<NoWarn>$(NoWarn);NU1608;XA4301;IL2007</NoWarn>
</PropertyGroup>

<!-- Release-only optimisations.
Expand Down
Loading