Skip to content

Commit

Permalink
Merge pull request #151 from AvaloniaCommunity/feature/Prism9x-v9.0.4…
Browse files Browse the repository at this point in the history
…01-Version

Prism v9.0.401-pre - Version Number and Documentation
  • Loading branch information
DamianSuess authored Apr 28, 2024
2 parents 6ea1589 + 875a113 commit e744fa4
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 deletions.
13 changes: 13 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

Change log history for Prism.Avalonia

## v9.0.401-pre (20204-04-13)

* Fixed typos
* DynamicallyAccessedMembers Attribute for linker hints
* Upgraded NuGet DryIoc to 5.4.3

## v9.0.271-pre (2024-04-12)

* Upgraded Prism.Core to v9.0.271-pre
* Breaking Changes:
* `Prism.Dialog`
* `Prism.Region` -> `Prism.Navigation.Region`

## v8.1.97.11072 (2024-01-27)

* Added support for .NET 8
Expand Down
2 changes: 0 additions & 2 deletions PrismLibrary_Avalonia.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
"src\\Prism.Avalonia\\Prism.Avalonia.csproj",
"src\\Prism.DryIoc.Avalonia\\Prism.DryIoc.Avalonia.csproj",
"tests\\Avalonia\\Prism.Avalonia.Tests\\Prism.Avalonia.Tests.csproj",
"tests\\Avalonia\\Prism.Container.Avalonia.Shared\\Prism.Container.Avalonia.Shared.shproj",
"tests\\Avalonia\\Prism.DryIoc.Avalonia.Tests\\Prism.DryIoc.Avalonia.Tests.csproj",
"tests\\Avalonia\\Prism.IocContainer.Avalonia.Tests.Support\\Prism.IocContainer.Avalonia.Tests.Support.csproj"
]
}
}
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ Just like Prism.WPF or Prism.Maui, your project must reference both the Prism.Av

Choose the NuGet package version that matches your Avalonia version.

The Avalonia version of this package uses [SemVer](https://semver.org/) format: `MAJOR.MINOR.PATCH.REVISION`. The `REVISION` segment indicates
the Avalonia version support. For instance `v8.1.97.11000` of this library supports, Avalonia v11.0.0.
The Avalonia version of this package uses [SemVer](https://semver.org/) format: `MAJOR.MINOR.PATCH.REVISION`. The `REVISION` segment indicates the Avalonia version support. For instance `v8.1.97.11000` of this library supports, Avalonia v11.0.0.

> major[.minor[.build[.revision]]]
> Assembly Version Attribute is limited to a `ushort` (65535) - [Ref](https://stackoverflow.com/a/73631971/249492).
| Avalonia Version | NuGet Package |
|-|-|
Expand Down
2 changes: 1 addition & 1 deletion build/Base.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project DefaultTargets="Build"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Version>9.0.271.11074-pre</Version>
<Version>9.0.401.11000-pre</Version>
<PackageProjectUrl>https://github.com/AvaloniaCommunity/Prism.Avalonia</PackageProjectUrl>
<Copyright>Copyright (c) 2024 Xeno Innovations, Inc.</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
11 changes: 0 additions & 11 deletions e2e/SampleMvvmApp/RegionAdapters/ItemsControlRegionAdapter.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Avalonia.Controls;
using Prism.Navigation.Regions;

Expand All @@ -14,8 +11,6 @@ namespace SampleMvvmApp.RegionAdapters
/// </summary>
public class ItemsControlRegionAdapter : RegionAdapterBase<ItemsControl>
{
#region Public Constructors

/// <summary>
/// Initializes a new instance of <see cref="ItemsControlRegionAdapter"/>.
/// </summary>
Expand All @@ -27,10 +22,6 @@ public ItemsControlRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory)
{
}

#endregion Public Constructors

#region Protected Methods

/// <summary>
/// Adapts an <see cref="ItemsControl"/> to an <see cref="IRegion"/>.
/// </summary>
Expand Down Expand Up @@ -83,7 +74,5 @@ protected override IRegion CreateRegion()
{
return new AllActiveRegion();
}

#endregion Protected Methods
}
}

0 comments on commit e744fa4

Please sign in to comment.