Skip to content

Commit

Permalink
Merge branch 'main' into feature/dotnet8
Browse files Browse the repository at this point in the history
  • Loading branch information
carlh98 authored Jan 15, 2024
2 parents 6847086 + 8560690 commit 9fd5af2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Prefix your items with `(Template)` if the change is about the template and not

## 3.0.X
- Updated to Uno 5.
- Fix canary builds by updating canary merge yml

## 2.2.X
- Added hooks for default analytics (page views and command invocations).
Expand Down
11 changes: 6 additions & 5 deletions build/canary-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ steps:
persistCredentials: true

- task: UseDotNet@2
displayName: 'Use .Net Core runtime 2.2.x'
displayName: 'Use .NET SDK $(DotNetVersion)'
inputs:
version: 2.2.x
packageType: 'sdk'
version: $(DotNetVersion)

- task: nventiveCanaryUpdater@5
env:
Expand All @@ -42,11 +43,11 @@ steps:
pushBranch: true
gitUserName: 'nventive DevOps'
gitUserEmail: 'devops@nventive.com'
nugetUpdaterVersion: '2.1.1'
nugetUpdaterVersion: '2.3.0-alpha.46'
nugetVersion: 'dev,beta,stable'
allowDowngrade: true
packageAuthor: 'nventive'
ignorePackages: 'GeneratedSerializers.Json;Nventive.View.Uno;BiometryService'
packageAuthor: 'nventive,uno platform,unoplatform'
ignorePackages: 'GeneratedSerializers.Json;BiometryService'
useVersionOverrides: true
versionOverridesFile: 'https://raw.githubusercontent.com/nventive/Canary/master/version-overrides.json'

Expand Down
5 changes: 2 additions & 3 deletions build/templates/dotnet-install.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
parameters:
DotNetVersion: '8.0.100'
UnoCheck_Version: '1.17.0'
UnoCheck_Manifest: 'https://raw.githubusercontent.com/unoplatform/uno.check/262bebd06e916ec022b8fdc4a2a9df14f0554b92/manifests/uno.ui.manifest.json'

steps:
- task: UseDotNet@2
displayName: 'Use .NET SDK ${{ parameters.DotNetVersion }}'
displayName: 'Use .NET SDK $(DotNetVersion)'
inputs:
packageType: 'sdk'
version: ${{ parameters.DotNetVersion }}
version: $(DotNetVersion)

- powershell: |
& dotnet tool update --global uno.check --version ${{ parameters.UnoCheck_Version }} --add-source https://api.nuget.org/v3/index.json
Expand Down
3 changes: 3 additions & 0 deletions build/variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@
windowsHostedAgentImage: 'windows-2022'
macOSHostedAgentImage: 'macOS-12'

# SDK versions
DotNetVersion: '7.0.400'

# Name of the folder where the artefacts will be placed. Variable used in build and release phases.
# We make seperate folders so that releases can each download only the folder they need.
AndroidArtifactName: Android
Expand Down

0 comments on commit 9fd5af2

Please sign in to comment.