From 91e131a7e13cebf92c8af82706e32f7de9e05db0 Mon Sep 17 00:00:00 2001 From: Alejandro Mora Date: Wed, 24 Jun 2026 09:53:32 -0400 Subject: [PATCH 1/3] =?UTF-8?q?feat:=20=E2=AC=86=EF=B8=8F=20upgrade=20to?= =?UTF-8?q?=20.net10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Symlinker/Properties/PublishProfiles/ClickOnceProfile.pubxml | 4 ++-- Symlinker/Symlinker.csproj | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Symlinker/Properties/PublishProfiles/ClickOnceProfile.pubxml b/Symlinker/Properties/PublishProfiles/ClickOnceProfile.pubxml index 1eaedec..db03a6d 100644 --- a/Symlinker/Properties/PublishProfiles/ClickOnceProfile.pubxml +++ b/Symlinker/Properties/PublishProfiles/ClickOnceProfile.pubxml @@ -16,7 +16,7 @@ True False Any CPU - bin\Release\net8.0-windows\app.publish\ + bin\Release\net10.0-windows\app.publish\ bin\publish\ ClickOnce False @@ -25,7 +25,7 @@ (none) False false - net8.0-windows + net10.0-windows True Foreground False diff --git a/Symlinker/Symlinker.csproj b/Symlinker/Symlinker.csproj index f8a0207..0b75a80 100644 --- a/Symlinker/Symlinker.csproj +++ b/Symlinker/Symlinker.csproj @@ -1,6 +1,6 @@ - net8.0-windows + net10.0-windows WinExe Symlinker false @@ -38,7 +38,7 @@ Symlinker.Program 4.0.0.0 Symlinker: The Symbolic link creator - Copyright © Alejandro Mora 2025 + Copyright © Alejandro Mora 2026 https://github.com/amd989/Symlinker https://github.com/amd989/Symlinker/ From 6a82805837251e309e5b0d0c3fe71e5250b86e3a Mon Sep 17 00:00:00 2001 From: Alejandro Mora Date: Wed, 24 Jun 2026 09:58:16 -0400 Subject: [PATCH 2/3] chore: :bookmark: increase version --- Symlinker/Properties/PublishProfiles/ClickOnceProfile.pubxml | 2 +- Symlinker/Symlinker.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Symlinker/Properties/PublishProfiles/ClickOnceProfile.pubxml b/Symlinker/Properties/PublishProfiles/ClickOnceProfile.pubxml index db03a6d..a299fd0 100644 --- a/Symlinker/Properties/PublishProfiles/ClickOnceProfile.pubxml +++ b/Symlinker/Properties/PublishProfiles/ClickOnceProfile.pubxml @@ -3,7 +3,7 @@ 0 - 4.0.0.0 + 4.1.0.0 True Release True diff --git a/Symlinker/Symlinker.csproj b/Symlinker/Symlinker.csproj index 0b75a80..b86a208 100644 --- a/Symlinker/Symlinker.csproj +++ b/Symlinker/Symlinker.csproj @@ -36,7 +36,7 @@ LocalIntranet Properties\app.manifest Symlinker.Program - 4.0.0.0 + 4.1.0.0 Symlinker: The Symbolic link creator Copyright © Alejandro Mora 2026 https://github.com/amd989/Symlinker From a56723bed861fefb9b9de56a26f8164ab6189ff3 Mon Sep 17 00:00:00 2001 From: Alejandro Mora Date: Wed, 24 Jun 2026 10:00:30 -0400 Subject: [PATCH 3/3] =?UTF-8?q?ci:=20=F0=9F=8F=97=EF=B8=8F=20build=20with?= =?UTF-8?q?=20.net10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 641ffbf..1c17657 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: '8.0.x' + dotnet-version: '10.0.x' - name: Build run: dotnet build Symlinker/Symlinker.csproj --configuration Release diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dae51a1..90dd414 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: '8.0.x' + dotnet-version: '10.0.x' - name: Setup Git run: |