Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@ name: CI
on: [push]

env:
xcodeVersion: 16.4
dotnetVersion: 9.0.304
xcodeVersion: 26.0.1
dotnetVersion: 10.0.100-rc.1.25451.107

jobs:
build:
runs-on: macos-15
runs-on: macos-26

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0

- name: Select Xcode ${{ env.xcodeVersion }}
run: sudo xcode-select -s /Applications/Xcode_${{ env.xcodeVersion }}.app

- name: Setup .NET ${{ env.dotnetVersion }}
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5.0.0
with:
dotnet-version: ${{ env.dotnetVersion }}

- name: Install iOS workload
run: dotnet workload install maui ios maccatalyst --version $dotnetVersion
run: dotnet workload install maui ios maccatalyst
env:
dotnetVersion: ${{ env.dotnetVersion }}

Expand All @@ -35,7 +35,7 @@ jobs:
- name: Run the Cake script
run: dotnet run --project build/Build.csproj --artifactsDir ${{ github.workspace }}/artifacts

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: NugetPackage
path: ${{ github.workspace }}/artifacts
2 changes: 1 addition & 1 deletion BTProgressHUD/BTProgressHUD.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.Net.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0-ios;net8.0-maccatalyst;net9.0-ios;net9.0-maccatalyst</TargetFrameworks>
<TargetFrameworks>net9.0-ios;net9.0-maccatalyst;net10.0-ios;net10.0-maccatalyst</TargetFrameworks>
<AssemblyName>BTProgressHUD</AssemblyName>
<RootNamespace>BigTed</RootNamespace>
<PackageId>BTProgressHUD</PackageId>
Expand Down
6 changes: 4 additions & 2 deletions BTProgressHUDDemo/BTProgressHUDDemo.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net9.0-ios;net9.0-maccatalyst</TargetFrameworks>
<!--<TargetFrameworks>net9.0-ios;net9.0-maccatalyst</TargetFrameworks>-->
<TargetFramework>net9.0-ios26.0</TargetFramework>
<NoWarn>$(NoWarn);XCODE_26_0_PREVIEW</NoWarn>
<OutputType>Exe</OutputType>
<RootNamespace>BTProgressHUDDemo</RootNamespace>
<UseMaui>true</UseMaui>
Expand Down Expand Up @@ -31,6 +33,6 @@

<ItemGroup>
<ProjectReference Include="..\BTProgressHUD\BTProgressHUD.csproj" />
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.14" />
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.14" />
</ItemGroup>
</Project>