Skip to content

Commit

Permalink
ff
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Apr 11, 2024
1 parent eeaee19 commit 0637318
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/BuildContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public BuildContext(ICakeContext context) : base(context)
DotNetMSBuildSettings = new DotNetMSBuildSettings();
DotNetMSBuildSettings.WithProperty("Version", Version);
DotNetMSBuildSettings.WithProperty("RepositoryUrl", repositoryUrl);
DotNetMSBuildSettings.WithProperty("AndroidSdkDirectory", context.EnvironmentVariable("ANDROID_SDK_ROOT"));
DotNetMSBuildSettings.WithProperty("AndroidSdkDirectory", context.EnvironmentVariable("ANDROID_HOME"));

DotNetBuildSettings = new DotNetBuildSettings
{
Expand All @@ -69,6 +69,7 @@ public BuildContext(ICakeContext context) : base(context)
};
MSBuildSettings.WithProperty(nameof(Version), Version);
MSBuildSettings.WithProperty(nameof(repositoryUrl), repositoryUrl);
MSBuildSettings.WithProperty("AndroidSdkDirectory", context.EnvironmentVariable("ANDROID_HOME"));

MSPackSettings = new MSBuildSettings
{
Expand Down

0 comments on commit 0637318

Please sign in to comment.