Skip to content

Commit

Permalink
Test Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
trwalke committed Jun 9, 2022
1 parent f1482f8 commit 82491f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/template-build-android-automation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ steps:
solution: 'LibsAndSamples.sln'
msbuildArgs: '/t:restore'
platform: 'any cpu'
configuration: 'debug'
configuration: 'release'

- task: MSBuild@1
displayName: 'Build and Sign MSAL Android apk'
Expand Down
4 changes: 2 additions & 2 deletions build/template-build-ios-automation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ steps:
displayName: 'Build Xamarin.iOS solution LibsMacOS.sln'
inputs:
solutionFile: LibsMacOS.sln
configuration: Debug
configuration: Release
clean: true
runNugetRestore: false
args: '/p:APPCENTER_BUILD=1 /p:RunCodeAnalysis=false'
Expand All @@ -37,7 +37,7 @@ steps:
- task: CopyFiles@2
displayName: 'Copy ipa to staging directory'
inputs:
SourceFolder: tests/devapps/XForms/XForms.iOS/bin/iPhone/Debug
SourceFolder: tests/devapps/XForms/XForms.iOS/bin/iPhone/Release
Contents: '**/*.ipa'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
CleanTargetFolder: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand Down Expand Up @@ -32,6 +32,7 @@
<WarningLevel>4</WarningLevel>
<AndroidLinkMode>Full</AndroidLinkMode>
<MandroidI18n />
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -42,6 +43,7 @@
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Android" />
Expand Down

0 comments on commit 82491f8

Please sign in to comment.