From 6ac6a23914197d9311073deb736a5dc1e8bd1191 Mon Sep 17 00:00:00 2001 From: Felipe Baltazar Date: Sun, 17 Sep 2023 20:15:25 -0300 Subject: [PATCH 1/5] Support for .net7 --- Maui.NeoControls.Demo/MainPage.xaml | 8 ++++---- Maui.NeoControls.Demo/Maui.NeoControls.Demo.csproj | 2 +- Maui.NeoControls/Maui.NeoControls.csproj | 5 +++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Maui.NeoControls.Demo/MainPage.xaml b/Maui.NeoControls.Demo/MainPage.xaml index 8c6a242..a1eaf7f 100644 --- a/Maui.NeoControls.Demo/MainPage.xaml +++ b/Maui.NeoControls.Demo/MainPage.xaml @@ -43,7 +43,7 @@ + Padding="20"> + Padding="20"> + Padding="20"> + Padding="20"> - net6.0-android;net6.0-ios + net7.0-android;net7.0-ios Exe Maui.NeoControls.Demo true diff --git a/Maui.NeoControls/Maui.NeoControls.csproj b/Maui.NeoControls/Maui.NeoControls.csproj index 2f50fe1..8b8a58c 100644 --- a/Maui.NeoControls/Maui.NeoControls.csproj +++ b/Maui.NeoControls/Maui.NeoControls.csproj @@ -1,7 +1,7 @@  - net6.0-android;net6.0-ios + net7.0-android;net7.0-ios true enable Maui.Views.NeoControls @@ -18,8 +18,9 @@ - + + From 4938f6e7e5f9fdf0f8450a3545b75051b2fd4a33 Mon Sep 17 00:00:00 2001 From: Felipe Baltazar Date: Sun, 17 Sep 2023 20:31:47 -0300 Subject: [PATCH 2/5] Dependencies check for update --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..fd22df9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: +- package-ecosystem: nuget + directory: "/" + schedule: + interval: daily + time: "09:00" + open-pull-requests-limit: 10 From 37146c7c9d6731555e4170e08bd48180d605c343 Mon Sep 17 00:00:00 2001 From: Felipe Baltazar Date: Sun, 17 Sep 2023 20:33:33 -0300 Subject: [PATCH 3/5] Fix CI/CD --- .github/workflows/PackageCI.yml | 4 ++-- .github/workflows/PrCheck.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/PackageCI.yml b/.github/workflows/PackageCI.yml index ec6514f..7b4e959 100644 --- a/.github/workflows/PackageCI.yml +++ b/.github/workflows/PackageCI.yml @@ -12,7 +12,7 @@ jobs: build: name: Build and publish package - runs-on: windows-2022 + runs-on: windows-latest steps: - uses: actions/checkout@v2 @@ -22,7 +22,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.x.x + dotnet-version: 7.x.x - name: Nerdbank.GitVersioning uses: dotnet/nbgv@v0.4.0 diff --git a/.github/workflows/PrCheck.yml b/.github/workflows/PrCheck.yml index 8f6f16e..1b23b86 100644 --- a/.github/workflows/PrCheck.yml +++ b/.github/workflows/PrCheck.yml @@ -13,7 +13,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.x.x + dotnet-version: 7.x.x - uses: actions/setup-java@v2 with: From 32b4e2ce508532de04f30e0cca7738fbb544c019 Mon Sep 17 00:00:00 2001 From: Felipe Baltazar Date: Sun, 17 Sep 2023 20:41:12 -0300 Subject: [PATCH 4/5] Fix analysis step --- .github/workflows/PrCheck.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PrCheck.yml b/.github/workflows/PrCheck.yml index 1b23b86..e2abc8e 100644 --- a/.github/workflows/PrCheck.yml +++ b/.github/workflows/PrCheck.yml @@ -50,7 +50,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.x.x + dotnet-version: 7.x.x - uses: actions/setup-java@v2 with: From ce6ca2155b9095d2a17a412be6e457990cc68d62 Mon Sep 17 00:00:00 2001 From: Felipe Baltazar Date: Sun, 17 Sep 2023 20:54:48 -0300 Subject: [PATCH 5/5] Avoid shallow clone --- .github/workflows/PrCheck.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/PrCheck.yml b/.github/workflows/PrCheck.yml index e2abc8e..8e64b1e 100644 --- a/.github/workflows/PrCheck.yml +++ b/.github/workflows/PrCheck.yml @@ -9,7 +9,11 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v1 + - name: Checkout repository + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: @@ -41,6 +45,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: Initialize CodeQL uses: github/codeql-action/init@v1