Skip to content

Commit 0b6a674

Browse files
committed
Bump nugets, cleanout old build configs, add uno extension
1 parent f63f2b6 commit 0b6a674

File tree

7 files changed

+25
-257
lines changed

7 files changed

+25
-257
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
- name: Setup .NET Core
3434
uses: actions/setup-dotnet@v1
3535
with:
36-
dotnet-version: '8.0.201'
36+
dotnet-version: '9.0.200'
3737

38-
- name: Add .NET Workloads
39-
run: dotnet workload install maui macos
38+
# - name: Add .NET Workloads
39+
# run: dotnet workload install maui macos
4040

4141
- name: Build
4242
run: dotnet build Build.slnf /restore -m -property:Configuration=Release -property:PublicRelease=true

Acr.UserDialogs.sln

Lines changed: 0 additions & 246 deletions
This file was deleted.

Acr.UserDialogs.slnx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Solution>
2+
<Folder Name="/Solution Items/">
3+
<File Path=".github\workflows\build.yml"/>
4+
<File Path="version.json"/>
5+
<File Path="Build.slnf"/>
6+
<File Path="icon.png"/>
7+
<File Path="readme.md"/>
8+
<File Path="src\Directory.build.props"/>
9+
</Folder>
10+
<Project Path="sample\Sample\Sample.csproj" Type="Classic C#" />
11+
<Project Path="src\Acr.UserDialogs.Maui\Acr.UserDialogs.Maui.csproj" Type="Classic C#" />
12+
<Project Path="src\Acr.UserDialogs.Uno\Acr.UserDialogs.Uno.csproj" Type="Classic C#"/>
13+
<Project Path="src\Acr.UserDialogs\Acr.UserDialogs.csproj" Type="Classic C#"/>
14+
</Solution>

Build.slnf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
22
"solution": {
3-
"path": "Acr.UserDialogs.sln",
3+
"path": "Acr.UserDialogs.slnx",
44
"projects": [
55
"src\\Acr.UserDialogs\\Acr.UserDialogs.csproj",
6-
"src\\Acr.UserDialogs.Maui\\Acr.UserDialogs.Maui.csproj"
6+
"src\\Acr.UserDialogs.Maui\\Acr.UserDialogs.Maui.csproj",
7+
"src\\Acr.UserDialogs.Uno\\Acr.UserDialogs.Uno.csproj"
78
]
89
}
910
}

src/Acr.UserDialogs/Acr.UserDialogs.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0;net8.0-ios;net8.0-android;net8.0-maccatalyst</TargetFrameworks>
3+
<TargetFrameworks>net8.0;net8.0-ios17.0;net8.0-android34.0;net8.0-maccatalyst17.0</TargetFrameworks>
44
<Product>$(AssemblyName) ($(TargetFramework))</Product>
55
</PropertyGroup>
66

@@ -14,14 +14,14 @@
1414
<ItemGroup Condition="$(TargetFramework.Contains('android'))">
1515
<Compile Include="Platforms\Shared\**\*.cs" />
1616
<Compile Include="Platforms\Android\**\*.cs" />
17-
<PackageReference Include="AndHUD" Version="2.0.1" />
17+
<PackageReference Include="AndHUD" Version="2.1.0" />
1818
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.9.0.2" />
1919
</ItemGroup>
2020

2121
<ItemGroup Condition="$(TargetFramework.Contains('ios')) OR $(TargetFramework.Contains('catalyst'))">
2222
<Compile Include="Platforms\Shared\**\*.cs" />
2323
<Compile Include="Platforms\ios\**\*.cs" />
24-
<PackageReference Include="BTProgressHUD" Version="2.0.1" />
24+
<PackageReference Include="BTProgressHUD" Version="2.2.0" />
2525
</ItemGroup>
2626

2727
<ItemGroup Condition="$(TargetFramework.StartsWith('macos'))">

src/Directory.build.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
</PropertyGroup>
2525

2626
<ItemGroup>
27-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
28-
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.133">
27+
<PackageReference Include="Nerdbank.GitVersioning" Version="3.7.115">
2928
<PrivateAssets>all</PrivateAssets>
3029
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
3130
</PackageReference>

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "9.1.0",
3+
"version": "9.2.0",
44
"assemblyVersion": {
55
"precision": "revision"
66
},

0 commit comments

Comments
 (0)