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

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"