Skip to content

Commit 5ffa021

Browse files
committed
Fix appinstaller encoding
1 parent 45a94f1 commit 5ffa021

File tree

2 files changed

+7
-15
lines changed

2 files changed

+7
-15
lines changed
Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<AppInstaller
3-
xmlns="http://schemas.microsoft.com/appx/appinstaller/2018"
4-
Version="1.0.0.0"
5-
Uri="https://github.com/SingletonSean/maui-tutorials/releases/latest/download/ContinuousDeployment.appinstaller">
6-
<MainPackage
7-
Name="SingletonSean.ContinuousDeployment"
8-
Publisher="CN=SingletonSean"
9-
Version="1.3.0.0"
10-
ProcessorArchitecture="x64"
11-
Uri="https://github.com/SingletonSean/maui-tutorials/releases/latest/download/AutoUpdate.msix" />
12-
<UpdateSettings>
13-
<OnLaunch HoursBetweenUpdateChecks="0" />
14-
</UpdateSettings>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<AppInstaller xmlns="http://schemas.microsoft.com/appx/appinstaller/2018" Version="1.0.0.0" Uri="https://github.com/SingletonSean/maui-tutorials/releases/latest/download/ContinuousDeployment.appinstaller">
3+
<MainPackage Name="SingletonSean.ContinuousDeployment" Publisher="CN=SingletonSean" Version="1.3.1.0" ProcessorArchitecture="x64" Uri="https://github.com/SingletonSean/maui-tutorials/releases/latest/download/AutoUpdate.msix" />
4+
<UpdateSettings>
5+
<OnLaunch HoursBetweenUpdateChecks="0" />
6+
</UpdateSettings>
157
</AppInstaller>

ContinuousDeployment/ContinuousDeployment.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<ApplicationId>SingletonSean.ContinuousDeployment</ApplicationId>
2828

2929
<!-- Versions -->
30-
<ApplicationDisplayVersion>1.3.0</ApplicationDisplayVersion>
30+
<ApplicationDisplayVersion>1.3.1</ApplicationDisplayVersion>
3131

3232
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
3333
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>

0 commit comments

Comments
 (0)