Browse Source
Fix Avalonia.Android output path in packages.cake.
VS 15.8 changed the output directory for Android projects. We need this change to match the new behavior.
pull/1849/head
Jeremy Koritzinsky
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
packages.cake
|
|
@ -303,7 +303,7 @@ public class Packages |
|
|
{ |
|
|
{ |
|
|
new NuSpecContent { Source = "Avalonia.Android.dll", Target = "lib/MonoAndroid10" } |
|
|
new NuSpecContent { Source = "Avalonia.Android.dll", Target = "lib/MonoAndroid10" } |
|
|
}, |
|
|
}, |
|
|
BasePath = context.Directory("./src/Android/Avalonia.Android/bin/" + parameters.DirSuffix + "/monoandroid44/"), |
|
|
BasePath = context.Directory("./src/Android/Avalonia.Android/bin/" + parameters.DirSuffix + "/monoandroid44/MonoAndroid44/"), |
|
|
OutputDirectory = parameters.NugetRoot |
|
|
OutputDirectory = parameters.NugetRoot |
|
|
}, |
|
|
}, |
|
|
/////////////////////////////////////////////////////////////////////////////// |
|
|
/////////////////////////////////////////////////////////////////////////////// |
|
|
|