From ad87399e7b54949cc86f987e6bfbde8af17f923e Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Tue, 6 May 2025 14:28:26 +0200 Subject: [PATCH 01/29] Create renovate.json --- renovate.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..ca67f8a --- /dev/null +++ b/renovate.json @@ -0,0 +1,13 @@ +{ + "extends": [ + "config:base" + ], + "schedule": ["before 6am on every weekday"], + "automerge": false, + "packageRules": [ + { + "matchPackagePatterns": ["*"], + "groupName": "all dependencies" + } + ] +} From dadbcfb56185d2752cfc2f20bd7bd573cd13c996 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Tue, 6 May 2025 14:30:27 +0200 Subject: [PATCH 02/29] add renovate pipeline --- .github/workflows/renovate.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/renovate.yml diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml new file mode 100644 index 0000000..86dbc84 --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,19 @@ +name: Renovate Dependency Update + +on: + schedule: + # Runs every morning at 6:00 AM UTC + - cron: '0 6 * * *' + workflow_dispatch: + +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Run Renovate + uses: renovatebot/github-action@v39 + with: + token: ${{ secrets.GITHUB_TOKEN }} From 524a513d4cf38aa64565e01838b141603571abad Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Tue, 6 May 2025 14:34:39 +0200 Subject: [PATCH 03/29] update renovate version --- .github/workflows/renovate.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 86dbc84..b3a0575 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -2,18 +2,16 @@ name: Renovate Dependency Update on: schedule: - # Runs every morning at 6:00 AM UTC - cron: '0 6 * * *' workflow_dispatch: - jobs: renovate: runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Run Renovate - uses: renovatebot/github-action@v39 + - name: Checkout + uses: actions/checkout@v4.2.2 + - name: Self-hosted Renovate + uses: renovatebot/github-action@v42.0.0 with: - token: ${{ secrets.GITHUB_TOKEN }} + configurationFile: example/renovate-config.js + token: ${{ secrets.RENOVATE_TOKEN }} From 8d79ce1bc0f554d6d080bd6ec61e26c8cb8908bf Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Tue, 6 May 2025 14:36:22 +0200 Subject: [PATCH 04/29] fix issue of renovate token --- .github/workflows/renovate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index b3a0575..e125fbd 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -14,4 +14,4 @@ jobs: uses: renovatebot/github-action@v42.0.0 with: configurationFile: example/renovate-config.js - token: ${{ secrets.RENOVATE_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} From 0c5bf5efeeb95e3fd1d8be390d405fe25f47a402 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Tue, 6 May 2025 14:50:53 +0200 Subject: [PATCH 05/29] Create renovate-config.js --- .github/configs /renovate-config.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/configs /renovate-config.js diff --git a/.github/configs /renovate-config.js b/.github/configs /renovate-config.js new file mode 100644 index 0000000..6c9d13e --- /dev/null +++ b/.github/configs /renovate-config.js @@ -0,0 +1,12 @@ +module.exports = { + platform: 'github', + branchPrefix: 'renovate/', + gitAuthor: 'Renovate Bot ', + automerge: false, + onboarding: false, + platform: 'github', + forkProcessing: 'enabled', + dryRun: 'full', + allowPostUpgradeCommandTemplating: true, + allowedPostUpgradeCommands: [".*"] +}; From 0ab933fbf1febdc36977602d26d2ad7a842d97d7 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Tue, 6 May 2025 14:51:49 +0200 Subject: [PATCH 06/29] Update renovate.yml --- .github/workflows/renovate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index e125fbd..a67243f 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -13,5 +13,5 @@ jobs: - name: Self-hosted Renovate uses: renovatebot/github-action@v42.0.0 with: - configurationFile: example/renovate-config.js + configurationFile: .github/configs/renovate-config.js token: ${{ secrets.GITHUB_TOKEN }} From 55ac95687ced41ad151bd1ba7dc4c27b4787cd5e Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Tue, 6 May 2025 14:54:20 +0200 Subject: [PATCH 07/29] Delete .github/configs directory --- .github/configs /renovate-config.js | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 .github/configs /renovate-config.js diff --git a/.github/configs /renovate-config.js b/.github/configs /renovate-config.js deleted file mode 100644 index 6c9d13e..0000000 --- a/.github/configs /renovate-config.js +++ /dev/null @@ -1,12 +0,0 @@ -module.exports = { - platform: 'github', - branchPrefix: 'renovate/', - gitAuthor: 'Renovate Bot ', - automerge: false, - onboarding: false, - platform: 'github', - forkProcessing: 'enabled', - dryRun: 'full', - allowPostUpgradeCommandTemplating: true, - allowedPostUpgradeCommands: [".*"] -}; From 78c318fb3d20e30b2a7f6a617dd24aecaa9110e3 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Tue, 6 May 2025 14:54:57 +0200 Subject: [PATCH 08/29] Create renovate-config.js --- .github/configs/renovate-config.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/configs/renovate-config.js diff --git a/.github/configs/renovate-config.js b/.github/configs/renovate-config.js new file mode 100644 index 0000000..6c9d13e --- /dev/null +++ b/.github/configs/renovate-config.js @@ -0,0 +1,12 @@ +module.exports = { + platform: 'github', + branchPrefix: 'renovate/', + gitAuthor: 'Renovate Bot ', + automerge: false, + onboarding: false, + platform: 'github', + forkProcessing: 'enabled', + dryRun: 'full', + allowPostUpgradeCommandTemplating: true, + allowedPostUpgradeCommands: [".*"] +}; From 111aad0f32f96df2d1318c39fd9ee3c277f34518 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Tue, 6 May 2025 14:58:44 +0200 Subject: [PATCH 09/29] Update renovate-config.js --- .github/configs/renovate-config.js | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/configs/renovate-config.js b/.github/configs/renovate-config.js index 6c9d13e..40df7c4 100644 --- a/.github/configs/renovate-config.js +++ b/.github/configs/renovate-config.js @@ -1,12 +1,10 @@ module.exports = { - platform: 'github', - branchPrefix: 'renovate/', - gitAuthor: 'Renovate Bot ', - automerge: false, - onboarding: false, - platform: 'github', - forkProcessing: 'enabled', - dryRun: 'full', - allowPostUpgradeCommandTemplating: true, - allowedPostUpgradeCommands: [".*"] + "platform": "github", + "branchPrefix": "renovate/", + "gitAuthor": "Renovate Bot ", + "automerge": false, + "onboarding": false, + "forkProcessing": "enabled", + "dryRun": "full", + "allowedCommands": [".*"] }; From a64d8f0681b580a55c8006cd21d9414aa5dd69e2 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Tue, 6 May 2025 15:50:37 +0200 Subject: [PATCH 10/29] Update renovate-config.js --- .github/configs/renovate-config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/configs/renovate-config.js b/.github/configs/renovate-config.js index 40df7c4..82b3eec 100644 --- a/.github/configs/renovate-config.js +++ b/.github/configs/renovate-config.js @@ -6,5 +6,6 @@ module.exports = { "onboarding": false, "forkProcessing": "enabled", "dryRun": "full", - "allowedCommands": [".*"] + "allowedCommands": [".*"], + "autodiscover": true, }; From 949ae5900c80db9d35a3f6ae9bc10f824ece6942 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Tue, 6 May 2025 15:57:23 +0200 Subject: [PATCH 11/29] remove dry run from renovate --- .github/configs/renovate-config.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/configs/renovate-config.js b/.github/configs/renovate-config.js index 82b3eec..784279e 100644 --- a/.github/configs/renovate-config.js +++ b/.github/configs/renovate-config.js @@ -3,9 +3,7 @@ module.exports = { "branchPrefix": "renovate/", "gitAuthor": "Renovate Bot ", "automerge": false, - "onboarding": false, "forkProcessing": "enabled", - "dryRun": "full", "allowedCommands": [".*"], "autodiscover": true, }; From 90a186e0d14190513ff31d4d08872e6fd5291c4c Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Tue, 6 May 2025 16:09:51 +0200 Subject: [PATCH 12/29] Update renovate-config.js --- .github/configs/renovate-config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/configs/renovate-config.js b/.github/configs/renovate-config.js index 784279e..6645a6b 100644 --- a/.github/configs/renovate-config.js +++ b/.github/configs/renovate-config.js @@ -1,4 +1,5 @@ module.exports = { + "extends": ["config:base"], "platform": "github", "branchPrefix": "renovate/", "gitAuthor": "Renovate Bot ", @@ -6,4 +7,5 @@ module.exports = { "forkProcessing": "enabled", "allowedCommands": [".*"], "autodiscover": true, + "prCreation": "immediate" }; From 5d86c1d2f70f692cf6dda0d323662254d123ca1b Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 10:32:06 +0200 Subject: [PATCH 13/29] Update renovate-config.js --- .github/configs/renovate-config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/configs/renovate-config.js b/.github/configs/renovate-config.js index 6645a6b..6c0802e 100644 --- a/.github/configs/renovate-config.js +++ b/.github/configs/renovate-config.js @@ -1,11 +1,11 @@ module.exports = { - "extends": ["config:base"], + "extends": ["config:recommended"], + "repositories": ["AvaloniaInside/Shell"], "platform": "github", "branchPrefix": "renovate/", "gitAuthor": "Renovate Bot ", "automerge": false, "forkProcessing": "enabled", "allowedCommands": [".*"], - "autodiscover": true, "prCreation": "immediate" }; From 98c15340807901cc576ac295e005f889ba9e8cb5 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 11:06:42 +0200 Subject: [PATCH 14/29] Update renovate.yml (#79) --- .github/workflows/renovate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index a67243f..4a69819 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -14,4 +14,4 @@ jobs: uses: renovatebot/github-action@v42.0.0 with: configurationFile: .github/configs/renovate-config.js - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.RENOVATE_PAT_TOKEN }} From 5e3e78b66ebee47befc64540229774af0c580d50 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 11:20:42 +0200 Subject: [PATCH 15/29] Update renovate.yml --- .github/workflows/renovate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 4a69819..a516ec0 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -15,3 +15,4 @@ jobs: with: configurationFile: .github/configs/renovate-config.js token: ${{ secrets.RENOVATE_PAT_TOKEN }} + LOG_LEVEL: debug From 0d8809665b5184e3ed710c906b8eb452fb9b49bc Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 11:29:50 +0200 Subject: [PATCH 16/29] Update renovate.yml --- .github/workflows/renovate.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index a516ec0..4a69819 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -15,4 +15,3 @@ jobs: with: configurationFile: .github/configs/renovate-config.js token: ${{ secrets.RENOVATE_PAT_TOKEN }} - LOG_LEVEL: debug From 52070c9aa3bcb6cecdfec1450914f9810d1276dd Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 11:34:15 +0200 Subject: [PATCH 17/29] Migrate config renovate.json (#81) Co-authored-by: Renovate Bot --- renovate.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index ca67f8a..54e2087 100644 --- a/renovate.json +++ b/renovate.json @@ -1,13 +1,17 @@ { "extends": [ - "config:base" + "config:recommended" + ], + "schedule": [ + "before 6am every weekday" ], - "schedule": ["before 6am on every weekday"], "automerge": false, "packageRules": [ { - "matchPackagePatterns": ["*"], - "groupName": "all dependencies" + "groupName": "all dependencies", + "matchPackageNames": [ + "*" + ] } ] } From b9f1eece3995c112196afdd2b0049e9ebf11601f Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 12:15:33 +0200 Subject: [PATCH 18/29] Delete renovate.json --- renovate.json | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 renovate.json diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 54e2087..0000000 --- a/renovate.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "extends": [ - "config:recommended" - ], - "schedule": [ - "before 6am every weekday" - ], - "automerge": false, - "packageRules": [ - { - "groupName": "all dependencies", - "matchPackageNames": [ - "*" - ] - } - ] -} From f0c7b7750351ee5a112e4e9895ca7912cafb5f05 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 12:18:22 +0200 Subject: [PATCH 19/29] Update renovate.yml --- .github/workflows/renovate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 4a69819..a516ec0 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -15,3 +15,4 @@ jobs: with: configurationFile: .github/configs/renovate-config.js token: ${{ secrets.RENOVATE_PAT_TOKEN }} + LOG_LEVEL: debug From 57737de3fcd342092d0d9b9b129204c2dfd40280 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 12:21:30 +0200 Subject: [PATCH 20/29] Add renovate.json (#82) Co-authored-by: Renovate Bot --- renovate.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..7190a60 --- /dev/null +++ b/renovate.json @@ -0,0 +1,3 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json" +} From 990ed1b89c2bf4be237997235e20809b0e9edaa9 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 12:25:18 +0200 Subject: [PATCH 21/29] Update dependency Newtonsoft.Json to 13.0.3 (#83) Co-authored-by: Renovate Bot --- src/Example/ShellExample/ShellExample/ShellExample.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Example/ShellExample/ShellExample/ShellExample.csproj b/src/Example/ShellExample/ShellExample/ShellExample.csproj index 67f83c1..3709fe4 100644 --- a/src/Example/ShellExample/ShellExample/ShellExample.csproj +++ b/src/Example/ShellExample/ShellExample/ShellExample.csproj @@ -16,7 +16,7 @@ - + From d995dd3f6d6fba2d1e166382a932660656d3f7dd Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 12:25:37 +0200 Subject: [PATCH 22/29] Update dependency Xamarin.AndroidX.Core.SplashScreen to 1.0.1.15 (#84) Co-authored-by: Renovate Bot --- .../ShellBottomCustomNavigator.Android.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Android/ShellBottomCustomNavigator.Android.csproj b/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Android/ShellBottomCustomNavigator.Android.csproj index fe8c064..b6300f5 100644 --- a/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Android/ShellBottomCustomNavigator.Android.csproj +++ b/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Android/ShellBottomCustomNavigator.Android.csproj @@ -19,7 +19,7 @@ - + From d5ebaf6d97c24eb13b084341a76c70dd80e23f76 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 12:42:50 +0200 Subject: [PATCH 23/29] Update renovate.yml --- .github/workflows/renovate.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index a516ec0..4a69819 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -15,4 +15,3 @@ jobs: with: configurationFile: .github/configs/renovate-config.js token: ${{ secrets.RENOVATE_PAT_TOKEN }} - LOG_LEVEL: debug From 0bba27431789a1da3e18efdcf094099bbe0fbcd2 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 12:43:06 +0200 Subject: [PATCH 24/29] Update renovate-config.js --- .github/configs/renovate-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/configs/renovate-config.js b/.github/configs/renovate-config.js index 6c0802e..e5ca9a7 100644 --- a/.github/configs/renovate-config.js +++ b/.github/configs/renovate-config.js @@ -1,5 +1,5 @@ module.exports = { - "extends": ["config:recommended"], + "extends": ["config:recommended", ":disableDependencyDashboard"], "repositories": ["AvaloniaInside/Shell"], "platform": "github", "branchPrefix": "renovate/", From 345fcb82e331ca01171258f911e8f723c72d0ca2 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 13:28:45 +0200 Subject: [PATCH 25/29] Update renovate.yml --- .github/workflows/renovate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 4a69819..a516ec0 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -15,3 +15,4 @@ jobs: with: configurationFile: .github/configs/renovate-config.js token: ${{ secrets.RENOVATE_PAT_TOKEN }} + LOG_LEVEL: debug From 00821f158f08a876178c8587a1da0c4621d108a0 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 13:33:49 +0200 Subject: [PATCH 26/29] Update renovate.yml --- .github/workflows/renovate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index a516ec0..f1e6ad4 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -15,4 +15,5 @@ jobs: with: configurationFile: .github/configs/renovate-config.js token: ${{ secrets.RENOVATE_PAT_TOKEN }} + env: LOG_LEVEL: debug From a5154e1aa45d50baa9cca8c02b181447d77cfd4c Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 14:03:50 +0200 Subject: [PATCH 27/29] move to central package (#87) --- src/AvaloniaInside.Shell.sln | 1 + .../AvaloniaInside.Shell.csproj | 8 +++---- src/Directory.Packages.props | 23 +++++++++++++++++++ .../ShellBottomCustomNavigator.Android.csproj | 4 ++-- .../ShellBottomCustomNavigator.Browser.csproj | 2 +- .../ShellBottomCustomNavigator.Desktop.csproj | 4 ++-- .../ShellBottomCustomNavigator.iOS.csproj | 2 +- .../ShellBottomCustomNavigator.csproj | 18 +++++++-------- .../ShellExample.Android.csproj | 2 +- .../ShellExample.Desktop.csproj | 4 ++-- .../ShellExample.Web/ShellExample.Web.csproj | 4 ++-- .../ShellExample.iOS/ShellExample.iOS.csproj | 2 +- .../ShellExample/ShellExample.csproj | 14 +++++------ 13 files changed, 56 insertions(+), 32 deletions(-) create mode 100644 src/Directory.Packages.props diff --git a/src/AvaloniaInside.Shell.sln b/src/AvaloniaInside.Shell.sln index 62a7f2e..3c281f4 100644 --- a/src/AvaloniaInside.Shell.sln +++ b/src/AvaloniaInside.Shell.sln @@ -21,6 +21,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Files", "Files", "{50F7051E ProjectSection(SolutionItems) = preProject Directory.Build.props = Directory.Build.props ..\README.md = ..\README.md + Directory.Packages.props = Directory.Packages.props EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShellBottomCustomNavigator", "Example\ShellBottomCustomNavigator\ShellBottomCustomNavigator\ShellBottomCustomNavigator.csproj", "{6D8FCCDB-C66B-4B81-9555-725E1EE912B8}" diff --git a/src/AvaloniaInside.Shell/AvaloniaInside.Shell.csproj b/src/AvaloniaInside.Shell/AvaloniaInside.Shell.csproj index 2750b60..6d07843 100644 --- a/src/AvaloniaInside.Shell/AvaloniaInside.Shell.csproj +++ b/src/AvaloniaInside.Shell/AvaloniaInside.Shell.csproj @@ -22,11 +22,11 @@ - - - + + + - + diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props new file mode 100644 index 0000000..adff2ab --- /dev/null +++ b/src/Directory.Packages.props @@ -0,0 +1,23 @@ + + + true + true + + + + + + + + + + + + + + + + + + + diff --git a/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Android/ShellBottomCustomNavigator.Android.csproj b/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Android/ShellBottomCustomNavigator.Android.csproj index b6300f5..19b5850 100644 --- a/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Android/ShellBottomCustomNavigator.Android.csproj +++ b/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Android/ShellBottomCustomNavigator.Android.csproj @@ -18,8 +18,8 @@ - - + + diff --git a/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Browser/ShellBottomCustomNavigator.Browser.csproj b/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Browser/ShellBottomCustomNavigator.Browser.csproj index e6fbe96..cb28ff7 100644 --- a/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Browser/ShellBottomCustomNavigator.Browser.csproj +++ b/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Browser/ShellBottomCustomNavigator.Browser.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Desktop/ShellBottomCustomNavigator.Desktop.csproj b/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Desktop/ShellBottomCustomNavigator.Desktop.csproj index e06faf3..0f26b48 100644 --- a/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Desktop/ShellBottomCustomNavigator.Desktop.csproj +++ b/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.Desktop/ShellBottomCustomNavigator.Desktop.csproj @@ -13,9 +13,9 @@ - + - + diff --git a/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.iOS/ShellBottomCustomNavigator.iOS.csproj b/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.iOS/ShellBottomCustomNavigator.iOS.csproj index ebb73cf..f36f18c 100644 --- a/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.iOS/ShellBottomCustomNavigator.iOS.csproj +++ b/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator.iOS/ShellBottomCustomNavigator.iOS.csproj @@ -7,7 +7,7 @@ - + diff --git a/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator/ShellBottomCustomNavigator.csproj b/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator/ShellBottomCustomNavigator.csproj index 9bf73af..c92f5fb 100644 --- a/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator/ShellBottomCustomNavigator.csproj +++ b/src/Example/ShellBottomCustomNavigator/ShellBottomCustomNavigator/ShellBottomCustomNavigator.csproj @@ -12,16 +12,16 @@ - - - - + + + + - - - - - + + + + + diff --git a/src/Example/ShellExample/ShellExample.Android/ShellExample.Android.csproj b/src/Example/ShellExample/ShellExample.Android/ShellExample.Android.csproj index ac3cbd1..736f66a 100644 --- a/src/Example/ShellExample/ShellExample.Android/ShellExample.Android.csproj +++ b/src/Example/ShellExample/ShellExample.Android/ShellExample.Android.csproj @@ -26,7 +26,7 @@ - + diff --git a/src/Example/ShellExample/ShellExample.Desktop/ShellExample.Desktop.csproj b/src/Example/ShellExample/ShellExample.Desktop/ShellExample.Desktop.csproj index fefcfa2..020f651 100644 --- a/src/Example/ShellExample/ShellExample.Desktop/ShellExample.Desktop.csproj +++ b/src/Example/ShellExample/ShellExample.Desktop/ShellExample.Desktop.csproj @@ -11,9 +11,9 @@ - + - + diff --git a/src/Example/ShellExample/ShellExample.Web/ShellExample.Web.csproj b/src/Example/ShellExample/ShellExample.Web/ShellExample.Web.csproj index 1d23028..0d3e573 100644 --- a/src/Example/ShellExample/ShellExample.Web/ShellExample.Web.csproj +++ b/src/Example/ShellExample/ShellExample.Web/ShellExample.Web.csproj @@ -12,8 +12,8 @@ - - + + diff --git a/src/Example/ShellExample/ShellExample.iOS/ShellExample.iOS.csproj b/src/Example/ShellExample/ShellExample.iOS/ShellExample.iOS.csproj index 1ef4603..faeb48c 100644 --- a/src/Example/ShellExample/ShellExample.iOS/ShellExample.iOS.csproj +++ b/src/Example/ShellExample/ShellExample.iOS/ShellExample.iOS.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/Example/ShellExample/ShellExample/ShellExample.csproj b/src/Example/ShellExample/ShellExample/ShellExample.csproj index 3709fe4..9400a42 100644 --- a/src/Example/ShellExample/ShellExample/ShellExample.csproj +++ b/src/Example/ShellExample/ShellExample/ShellExample.csproj @@ -11,14 +11,14 @@ - - - + + + - - - - + + + + From 4a989d25a3f69dbfc08cf2d24a8646983d4cd11b Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 14:08:07 +0200 Subject: [PATCH 28/29] Update avalonia monorepo to 11.3.0 (#88) Co-authored-by: Renovate Bot --- src/Directory.Packages.props | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props index adff2ab..fd85619 100644 --- a/src/Directory.Packages.props +++ b/src/Directory.Packages.props @@ -4,16 +4,16 @@ true - - - - - - - - - - + + + + + + + + + + From f9a25800ae4e0c86aaa0971ba858402282e9d259 Mon Sep 17 00:00:00 2001 From: Omid Mafakher Date: Thu, 8 May 2025 14:08:31 +0200 Subject: [PATCH 29/29] Update dependency ReactiveUI to 20.2.45 (#89) Co-authored-by: Renovate Bot --- src/Directory.Packages.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props index fd85619..739b949 100644 --- a/src/Directory.Packages.props +++ b/src/Directory.Packages.props @@ -18,6 +18,6 @@ - +