Skip to content

Commit

Permalink
prepare release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
OmidID committed Mar 8, 2025
1 parent 995752b commit ce6fc05
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
#- name: Install workloads
# run: dotnet workload install android ios maccatalyst tvos macos maui wasm-tools
- name: Restore dependencies
Expand Down
4 changes: 2 additions & 2 deletions src/AvaloniaInside.Shell/AvaloniaInside.Shell.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Version>1.3.0</Version>
<Version>1.3.1</Version>
<Title>Shell view for Avalonia</Title>
<Description>Shell reduces the complexity of mobile/desktop application development by providing the fundamental features that most applications require</Description>
<Copyright>AvaloniaInside</Copyright>
Expand Down
6 changes: 2 additions & 4 deletions src/AvaloniaInside.Shell/NavigateResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ internal NavigateResult(bool hasArgument, object? argument)
public object? Argument { get; }

public T? As<T>() => HasArgument && Argument is T argument ? argument : default;
public static NavigateResult FromResult<T>(T argument) => new(true, argument);

public static NavigateResult FromResult<T>(T argument) => new(true, argument);

public static readonly NavigateResult Completed = new NavigateResult(false, null);
}


2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<AvaloniaVersion>11.2.3</AvaloniaVersion>
<AvaloniaVersion>11.2.5</AvaloniaVersion>
</PropertyGroup>
</Project>

0 comments on commit ce6fc05

Please sign in to comment.