Skip to content

Commit cae7d4e

Browse files
committed
Update greeting
1 parent 5ffa021 commit cae7d4e

File tree

3 files changed

+18
-19
lines changed

3 files changed

+18
-19
lines changed

ContinuousDeployment/ContinuousDeployment.appinstaller

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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" />
3+
<MainPackage Name="SingletonSean.ContinuousDeployment" Publisher="CN=SingletonSean" Version="1.4.0.0" ProcessorArchitecture="x64" Uri="https://github.com/SingletonSean/maui-tutorials/releases/latest/download/AutoUpdate.msix" />
44
<UpdateSettings>
55
<OnLaunch HoursBetweenUpdateChecks="0" />
66
</UpdateSettings>

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.1</ApplicationDisplayVersion>
30+
<ApplicationDisplayVersion>1.4.0</ApplicationDisplayVersion>
3131

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

ContinuousDeployment/MainPage.xaml

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,34 @@
11
<?xml version="1.0" encoding="utf-8" ?>
2-
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4-
x:Class="ContinuousDeployment.MainPage">
2+
<ContentPage
3+
x:Class="ContinuousDeployment.MainPage"
4+
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
5+
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
56

67
<ScrollView>
7-
<VerticalStackLayout
8-
Padding="30,0"
9-
Spacing="25">
8+
<VerticalStackLayout Padding="30,0" Spacing="25">
109
<Image
11-
Source="dotnet_bot.png"
12-
HeightRequest="185"
1310
Aspect="AspectFit"
14-
SemanticProperties.Description="dot net bot in a race car number eight" />
11+
HeightRequest="185"
12+
SemanticProperties.Description="dot net bot in a race car number eight"
13+
Source="dotnet_bot.png" />
1514

1615
<Label
17-
Text="Hello, World!"
16+
SemanticProperties.HeadingLevel="Level1"
1817
Style="{StaticResource Headline}"
19-
SemanticProperties.HeadingLevel="Level1" />
18+
Text="Hello, SingletonSean Subscribers!" />
2019

2120
<Label
22-
Text="Welcome to &#10;.NET Multi-platform App UI"
23-
Style="{StaticResource SubHeadline}"
21+
SemanticProperties.Description="Welcome to dot net Multi platform App U I"
2422
SemanticProperties.HeadingLevel="Level2"
25-
SemanticProperties.Description="Welcome to dot net Multi platform App U I" />
23+
Style="{StaticResource SubHeadline}"
24+
Text="Welcome to &#10;.NET Multi-platform App UI" />
2625

2726
<Button
2827
x:Name="CounterBtn"
29-
Text="Click me"
30-
SemanticProperties.Hint="Counts the number of times you click"
3128
Clicked="OnCounterClicked"
32-
HorizontalOptions="Fill" />
29+
HorizontalOptions="Fill"
30+
SemanticProperties.Hint="Counts the number of times you click"
31+
Text="Click me" />
3332
</VerticalStackLayout>
3433
</ScrollView>
3534

0 commit comments

Comments
 (0)