1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-14 05:47:20 +08:00

Merge pull request #11529 from peppy/fix-android-release

Restore nuget packages per project to avoid toolchain incompatibilities
This commit is contained in:
Dean Herbert 2021-01-18 22:04:19 +09:00 committed by GitHub
commit dcb92e5b38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,6 +48,9 @@ desc 'Deploy to play store'
desc 'Compile the project'
lane :build do |options|
nuget_restore(project_path: 'osu.Android/osu.Android.csproj')
nuget_restore(project_path: 'osu.Game/osu.Game.csproj')
souyuz(
build_configuration: 'Release',
solution_path: 'osu.sln',
@ -103,6 +106,9 @@ platform :ios do
desc 'Compile the project'
lane :build do
nuget_restore(project_path: 'osu.iOS/osu.iOS.csproj')
nuget_restore(project_path: 'osu.Game/osu.Game.csproj')
souyuz(
platform: "ios",
plist_path: "osu.iOS/Info.plist"