Skip to content

Commit 3273eea

Browse files
authored
Fix type conversion for object primitive type when get dictionary from settings.json (#29)
* Update core package version to fix #28 * Fix GitHub connection
1 parent 9992faf commit 3273eea

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Aquality.Appium.Mobile/src/Aquality.Appium.Mobile/Aquality.Appium.Mobile.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
</ItemGroup>
4646

4747
<ItemGroup>
48-
<PackageReference Include="Appium.WebDriver" Version="4.1.1" />
49-
<PackageReference Include="Aquality.Selenium.Core" Version="1.2.2" />
48+
<PackageReference Include="Appium.WebDriver" Version="4.3.1" />
49+
<PackageReference Include="Aquality.Selenium.Core" Version="1.3.1" />
5050
</ItemGroup>
5151

5252
</Project>

Aquality.Appium.Mobile/tests/Aquality.Appium.Mobile.Tests/Aquality.Appium.Mobile.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="nunit" Version="3.12.0" />
11-
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1">
10+
<PackageReference Include="nunit" Version="3.13.0" />
11+
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0">
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
</PackageReference>
15-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
15+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

Aquality.Appium.Mobile/tests/Aquality.Appium.Mobile.Tests/Resources/devices.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"iOS_Simulator": {
33
"capabilities": {
4-
"platformVersion": "13.3",
4+
"platformVersion": "14.3",
55
"deviceName": "iPhone 11"
66
}
77
},
88
"iPhone_11": {
99
"capabilities": {
10-
"platformVersion": "13.3",
10+
"platformVersion": "14.3",
1111
"deviceName": "iPhone 11",
1212
"udid": "device_udid",
1313
"wdaLocalPort": "8081"

Aquality.Appium.Mobile/tests/Aquality.Appium.Mobile.Tests/Resources/devices.test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"iPhone_11": {
33
"capabilities": {
4-
"platformVersion": "13.3",
4+
"platformVersion": "14.3",
55
"deviceName": "iPhone 11 test",
66
"udid": "device_udid",
77
"wdaLocalPort": "8085"

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ stages:
141141
displayName: 'Create tag on GitHub and publish NuGet package'
142142

143143
steps:
144-
- task: UseDotNet@2
144+
- task: UseDotNet@2
145145
displayName: 'Install .NET SDK 2.1.x'
146-
inputs:
146+
inputs:
147147
version: '2.1.x'
148148

149149
- task: GitVersion@5
@@ -157,7 +157,7 @@ stages:
157157
- task: GitHubRelease@0
158158
displayName: 'Create tag on GitHub'
159159
inputs:
160-
gitHubConnection: 'GitHub'
160+
gitHubConnection: 'github.com_aqualityautomation'
161161
repositoryName: 'aquality-automation/aquality-appium-mobile-dotnet'
162162
action: 'create'
163163
tag: 'v$(GitVersion.NuGetVersion)'

0 commit comments

Comments
 (0)