Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 7 additions & 0 deletions build-tools/automation/azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,13 @@ extends:
-androidVersion $(ANDROID_PACK_VERSION)
displayName: Update MAUI's Android dependency

- task: CopyFiles@2
displayName: Override MAUI Android target framework version
inputs:
SourceFolder: $(Build.SourcesDirectory)/android/build-tools/automation/maui
Contents: Directory.Build.Override.props
TargetFolder: $(Build.SourcesDirectory)/maui

- task: DotNetCoreCLI@2
displayName: Update Android SDK band in Workloads.csproj
inputs:
Expand Down
6 changes: 6 additions & 0 deletions build-tools/automation/maui/Directory.Build.Override.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<Project>
<PropertyGroup>
<AndroidTargetFrameworkVersionSdkDefault>37.0</AndroidTargetFrameworkVersionSdkDefault>
<AndroidTargetFrameworkVersion>37.0</AndroidTargetFrameworkVersion>
</PropertyGroup>
</Project>