Skip to content

Commit 526c445

Browse files
committed
chore: adding net8.0 target to Prism.Core & Prism.Wpf
1 parent 0790176 commit 526c445

File tree

12 files changed

+22
-13
lines changed

12 files changed

+22
-13
lines changed

.github/workflows/build_core.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ jobs:
2121
with:
2222
name: Build Prism.Core
2323
solution-path: PrismLibrary_Core.slnf
24+
dotnet-version: 8.0.x

.github/workflows/build_wpf.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ jobs:
2323
with:
2424
name: Build Prism.Wpf
2525
solution-path: PrismLibrary_Wpf.slnf
26+
dotnet-version: 8.0.x

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
with:
2222
name: Build Prism.Core
2323
solution-path: PrismLibrary_Core.slnf
24+
dotnet-version: 8.0.x
2425
code-sign: true
2526
artifact-name: Core
2627
secrets:
@@ -35,6 +36,7 @@ jobs:
3536
with:
3637
name: Build Prism.Wpf
3738
solution-path: PrismLibrary_Wpf.slnf
39+
dotnet-version: 8.0.x
3840
code-sign: true
3941
artifact-name: Wpf
4042
secrets:

src/Prism.Core/Prism.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net462;net47;net6.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net462;net47;net6.0;net8.0</TargetFrameworks>
55
<AssemblyName>Prism</AssemblyName>
66
<PackageId>Prism.Core</PackageId>
77
<RootNamespace>Prism</RootNamespace>

src/Prism.Events/Prism.Events.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net462;net47;net6.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net462;net47;net6.0;net8.0</TargetFrameworks>
55
<!-- Summary is not actually supported at this time. Including the summary for future support. -->
66
<!--<Summary>Prism provides an implementation of a collection of design patterns that are helpful in writing well structured and maintainable applications.</Summary>-->
77
<Description>Prism.Events is a library that facilitates communication between loosely coupled components in an application. It provides an event aggregator service that allows publishers and subscribers to interact through events without direct references. With multicast publish/subscribe functionality, multiple publishers can raise the same event, and multiple subscribers can listen to it, enabling flexible and efficient communication.</Description>

src/Wpf/Prism.DryIoc.Wpf/Prism.DryIoc.Wpf.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
33

44
<PropertyGroup>
5-
<TargetFrameworks>net462;net47;net6.0-windows</TargetFrameworks>
5+
<TargetFrameworks>net462;net47;net6.0-windows;net8.0-windows</TargetFrameworks>
66
<UseWPF>true</UseWPF>
77
<RootNamespace>Prism.DryIoc</RootNamespace>
88
<PackageId>Prism.DryIoc</PackageId>

src/Wpf/Prism.Unity.Wpf/Prism.Unity.Wpf.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
33

44
<PropertyGroup>
5-
<TargetFrameworks>net462;net47;net6.0-windows</TargetFrameworks>
5+
<TargetFrameworks>net462;net47;net6.0-windows;net8.0-windows</TargetFrameworks>
66
<UseWPF>true</UseWPF>
77
<RootNamespace>Prism.Unity</RootNamespace>
88
<PackageId>Prism.Unity</PackageId>

src/Wpf/Prism.Wpf/Prism.Wpf.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<PropertyGroup>
55
<AppDesignerFolder>Properties</AppDesignerFolder>
66
<RootNamespace>Prism</RootNamespace>
7-
<TargetFrameworks>net462;net47;net6.0-windows</TargetFrameworks>
7+
<TargetFrameworks>net462;net47;net6.0-windows;net8.0-windows</TargetFrameworks>
88
<UseWPF>true</UseWPF>
99
<!--<Summary>Prism libraries related to user interface composition, regions, and modularity for WPF.</Summary>-->
1010
<Description>Prism provides an implementation of a collection of design patterns that are helpful in writing well structured, maintainable, and testable XAML applications, including MVVM, dependency injection, commanding, event aggregation, and more. Prism's core functionality is a shared library targeting the .NET Framework and .NET. Features that need to be platform specific are implemented in the respective libraries for the target platform (WPF, Uno Platform, .NET MAUI and Xamarin Forms).

tests/Wpf/Prism.DryIoc.Wpf.Tests/Prism.DryIoc.Wpf.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
33

44
<PropertyGroup>
5-
<TargetFramework>net472</TargetFramework>
5+
<TargetFrameworks>net472;net8.0-windows</TargetFrameworks>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

tests/Wpf/Prism.IocContainer.Wpf.Tests.Support/Prism.IocContainer.Wpf.Tests.Support.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
33

44
<PropertyGroup>
5-
<TargetFramework>net472</TargetFramework>
5+
<TargetFrameworks>net472;net8.0-windows</TargetFrameworks>
66
</PropertyGroup>
77

88
<ItemGroup>

0 commit comments

Comments
 (0)