Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate Prism.Events to its own package #2867

Merged
merged 4 commits into from
May 18, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 15 additions & 0 deletions PrismLibrary.sln
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Prism.Maui.Tests", "tests\M
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Prism.DryIoc.Maui.Tests", "tests\Maui\Prism.DryIoc.Maui.Tests\Prism.DryIoc.Maui.Tests.csproj", "{8711D306-1118-4A11-9399-EF14AA13015E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Prism.Events", "src\Prism.Events\Prism.Events.csproj", "{8610485A-BE9F-4938-86D4-E9F1FA1739A0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -421,6 +423,18 @@ Global
{8711D306-1118-4A11-9399-EF14AA13015E}.Release|x64.Build.0 = Release|Any CPU
{8711D306-1118-4A11-9399-EF14AA13015E}.Release|x86.ActiveCfg = Release|Any CPU
{8711D306-1118-4A11-9399-EF14AA13015E}.Release|x86.Build.0 = Release|Any CPU
{8610485A-BE9F-4938-86D4-E9F1FA1739A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8610485A-BE9F-4938-86D4-E9F1FA1739A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8610485A-BE9F-4938-86D4-E9F1FA1739A0}.Debug|x64.ActiveCfg = Debug|Any CPU
{8610485A-BE9F-4938-86D4-E9F1FA1739A0}.Debug|x64.Build.0 = Debug|Any CPU
{8610485A-BE9F-4938-86D4-E9F1FA1739A0}.Debug|x86.ActiveCfg = Debug|Any CPU
{8610485A-BE9F-4938-86D4-E9F1FA1739A0}.Debug|x86.Build.0 = Debug|Any CPU
{8610485A-BE9F-4938-86D4-E9F1FA1739A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8610485A-BE9F-4938-86D4-E9F1FA1739A0}.Release|Any CPU.Build.0 = Release|Any CPU
{8610485A-BE9F-4938-86D4-E9F1FA1739A0}.Release|x64.ActiveCfg = Release|Any CPU
{8610485A-BE9F-4938-86D4-E9F1FA1739A0}.Release|x64.Build.0 = Release|Any CPU
{8610485A-BE9F-4938-86D4-E9F1FA1739A0}.Release|x86.ActiveCfg = Release|Any CPU
{8610485A-BE9F-4938-86D4-E9F1FA1739A0}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -466,6 +480,7 @@ Global
{540CEEC1-D541-4614-BF0B-18056A83E434} = {00FFDC13-7397-46F1-897E-A62A7575D28A}
{7A1E157F-D4CD-4E6B-9CE3-1894EB2A15A7} = {540CEEC1-D541-4614-BF0B-18056A83E434}
{8711D306-1118-4A11-9399-EF14AA13015E} = {540CEEC1-D541-4614-BF0B-18056A83E434}
{8610485A-BE9F-4938-86D4-E9F1FA1739A0} = {F3664D7A-6FF5-4D1F-9F5F-26EE87F032D3}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C7433AE2-B1A0-4C1A-887E-5CAA7AAF67A6}
Expand Down
1 change: 1 addition & 0 deletions PrismLibrary_Core.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"src\\Containers\\Prism.DryIoc.Shared\\Prism.DryIoc.Shared.shproj",
"src\\Containers\\Prism.Unity.Shared\\Prism.Unity.Shared.shproj",
"src\\Prism.Core\\Prism.Core.csproj",
"src\\Prism.Events\\Prism.Events.csproj",
"tests\\Containers\\Prism.Container.DryIoc.Tests\\Prism.Ioc.DryIoc.Tests.csproj",
"tests\\Containers\\Prism.Container.Shared\\Prism.Ioc.Shared.shproj",
"tests\\Containers\\Prism.Container.Unity.Tests\\Prism.Ioc.Unity.Tests.csproj",
Expand Down
1 change: 1 addition & 0 deletions PrismLibrary_Forms.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"src\\Forms\\Prism.Forms\\Prism.Forms.csproj",
"src\\Forms\\Prism.Unity.Forms\\Prism.Unity.Forms.csproj",
"src\\Prism.Core\\Prism.Core.csproj",
"src\\Prism.Events\\Prism.Events.csproj",
"tests\\Containers\\Prism.Container.DryIoc.Tests\\Prism.Ioc.DryIoc.Tests.csproj",
"tests\\Containers\\Prism.Container.Shared\\Prism.Ioc.Shared.shproj",
"tests\\Containers\\Prism.Container.Unity.Tests\\Prism.Ioc.Unity.Tests.csproj",
Expand Down
3 changes: 2 additions & 1 deletion PrismLibrary_Maui.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
"src\\Maui\\Prism.Maui.Rx\\Prism.Maui.Rx.csproj",
"src\\Maui\\Prism.Maui\\Prism.Maui.csproj",
"src\\Prism.Core\\Prism.Core.csproj",
"src\\Prism.Events\\Prism.Events.csproj",
"tests\\Containers\\Prism.Container.DryIoc.Tests\\Prism.Ioc.DryIoc.Tests.csproj",
"tests\\Containers\\Prism.Container.Shared\\Prism.Ioc.Shared.shproj",
"tests\\Maui\\Prism.DryIoc.Maui.Tests\\Prism.DryIoc.Maui.Tests.csproj",
"tests\\Maui\\Prism.Maui.Tests\\Prism.Maui.Tests.csproj",
"tests\\Prism.Core.Tests\\Prism.Core.Tests.csproj"
]
}
}
}
1 change: 1 addition & 0 deletions PrismLibrary_Uno.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"src\\Containers\\Prism.DryIoc.Shared\\Prism.DryIoc.Shared.shproj",
"src\\Containers\\Prism.Unity.Shared\\Prism.Unity.Shared.shproj",
"src\\Prism.Core\\Prism.Core.csproj",
"src\\Prism.Events\\Prism.Events.csproj",
"src\\Uno\\Prism.DryIoc.Uno\\Prism.DryIoc.Uno.WinUI.csproj",
"src\\Uno\\Prism.Uno\\Prism.Uno.WinUI.csproj",
"tests\\Containers\\Prism.Container.DryIoc.Tests\\Prism.Ioc.DryIoc.Tests.csproj",
Expand Down
1 change: 1 addition & 0 deletions PrismLibrary_Wpf.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"src\\Containers\\Prism.DryIoc.Shared\\Prism.DryIoc.Shared.shproj",
"src\\Containers\\Prism.Unity.Shared\\Prism.Unity.Shared.shproj",
"src\\Prism.Core\\Prism.Core.csproj",
"src\\Prism.Events\\Prism.Events.csproj",
"src\\Wpf\\Prism.DryIoc.Wpf\\Prism.DryIoc.Wpf.csproj",
"src\\Wpf\\Prism.Unity.Wpf\\Prism.Unity.Wpf.csproj",
"src\\Wpf\\Prism.Wpf\\Prism.Wpf.csproj",
Expand Down
52 changes: 51 additions & 1 deletion e2e/Forms/HelloWorld.sln
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29709.97
MinimumVisualStudioVersion = 10.0.40219.1
Expand Down Expand Up @@ -45,6 +45,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
..\..\Packages.props = ..\..\Packages.props
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Prism.Events", "..\..\src\Prism.Events\Prism.Events.csproj", "{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution
..\..\src\Containers\Prism.DryIoc.Shared\Prism.DryIoc.Shared.projitems*{6e7ec81d-da39-4c4f-a898-0148558c34f4}*SharedItemsImports = 13
Expand Down Expand Up @@ -797,6 +799,54 @@ Global
{53FF796C-02CA-4276-B3F9-207E5ABC67EB}.Release|x64.Build.0 = Release|Any CPU
{53FF796C-02CA-4276-B3F9-207E5ABC67EB}.Release|x86.ActiveCfg = Release|Any CPU
{53FF796C-02CA-4276-B3F9-207E5ABC67EB}.Release|x86.Build.0 = Release|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Ad-Hoc|Any CPU.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Ad-Hoc|Any CPU.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Ad-Hoc|ARM.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Ad-Hoc|iPhoneSimulator.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Ad-Hoc|x64.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Ad-Hoc|x86.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Ad-Hoc|x86.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.AppStore|Any CPU.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.AppStore|ARM.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.AppStore|ARM.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.AppStore|iPhone.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.AppStore|x64.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.AppStore|x64.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.AppStore|x86.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.AppStore|x86.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Debug|Any CPU.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Debug|ARM.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Debug|ARM.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Debug|iPhone.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Debug|x64.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Debug|x64.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Debug|x86.ActiveCfg = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Debug|x86.Build.0 = Debug|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Release|Any CPU.ActiveCfg = Release|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Release|Any CPU.Build.0 = Release|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Release|ARM.ActiveCfg = Release|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Release|ARM.Build.0 = Release|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Release|iPhone.ActiveCfg = Release|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Release|iPhone.Build.0 = Release|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Release|x64.ActiveCfg = Release|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Release|x64.Build.0 = Release|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Release|x86.ActiveCfg = Release|Any CPU
{31BAD7FA-1135-41E4-BE75-EA5AB1C96310}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
6 changes: 6 additions & 0 deletions e2e/Maui/PrismMauiDemo.sln
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Prism.Maui.Tests", "..\..\t
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Prism.Core.Tests", "..\..\tests\Prism.Core.Tests\Prism.Core.Tests.csproj", "{E0F13AA9-8083-47CA-B10D-93C5285D1505}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Prism.Events", "..\..\src\Prism.Events\Prism.Events.csproj", "{5623CB62-59C1-49BC-BB16-4C5D63D82DAC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -76,6 +78,10 @@ Global
{E0F13AA9-8083-47CA-B10D-93C5285D1505}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E0F13AA9-8083-47CA-B10D-93C5285D1505}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E0F13AA9-8083-47CA-B10D-93C5285D1505}.Release|Any CPU.Build.0 = Release|Any CPU
{5623CB62-59C1-49BC-BB16-4C5D63D82DAC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5623CB62-59C1-49BC-BB16-4C5D63D82DAC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5623CB62-59C1-49BC-BB16-4C5D63D82DAC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5623CB62-59C1-49BC-BB16-4C5D63D82DAC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
32 changes: 31 additions & 1 deletion e2e/Uno/HelloWorld.sln
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32210.308
MinimumVisualStudioVersion = 15.0.26124.0
Expand Down Expand Up @@ -39,6 +39,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "modules", "modules", "{F67B
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ModuleA", "ModuleA\ModuleA.csproj", "{5AD22541-BC5D-45E0-9C95-87B51300FF1C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Prism.Events", "..\..\src\Prism.Events\Prism.Events.csproj", "{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -396,6 +398,34 @@ Global
{5AD22541-BC5D-45E0-9C95-87B51300FF1C}.Release|x64.Build.0 = Release|Any CPU
{5AD22541-BC5D-45E0-9C95-87B51300FF1C}.Release|x86.ActiveCfg = Release|Any CPU
{5AD22541-BC5D-45E0-9C95-87B51300FF1C}.Release|x86.Build.0 = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|ARM.ActiveCfg = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|ARM.Build.0 = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|ARM64.Build.0 = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|iPhone.Build.0 = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|x64.ActiveCfg = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|x64.Build.0 = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|x86.ActiveCfg = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Debug|x86.Build.0 = Debug|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|Any CPU.Build.0 = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|ARM.ActiveCfg = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|ARM.Build.0 = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|ARM64.ActiveCfg = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|ARM64.Build.0 = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|iPhone.ActiveCfg = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|iPhone.Build.0 = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|x64.ActiveCfg = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|x64.Build.0 = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|x86.ActiveCfg = Release|Any CPU
{ABC0F8AF-6FED-4C3E-80B3-54F1A7CC5930}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
6 changes: 6 additions & 0 deletions e2e/Wpf/HelloWorld.sln
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloWorld.Core", "HelloWor
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Modules", "Modules", "{63541838-3D6A-4F2E-92EF-AC4953BB9B9B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Prism.Events", "..\..\src\Prism.Events\Prism.Events.csproj", "{E35BF062-652E-4520-8DD8-55DC80012D57}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution
..\..\src\Containers\Prism.DryIoc.Shared\Prism.DryIoc.Shared.projitems*{a0842858-bfd5-41ae-bde7-cbd870bc9900}*SharedItemsImports = 5
Expand Down Expand Up @@ -65,6 +67,10 @@ Global
{F9541A8C-42DD-4340-AB57-54C7AAAC1BCC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F9541A8C-42DD-4340-AB57-54C7AAAC1BCC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F9541A8C-42DD-4340-AB57-54C7AAAC1BCC}.Release|Any CPU.Build.0 = Release|Any CPU
{E35BF062-652E-4520-8DD8-55DC80012D57}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E35BF062-652E-4520-8DD8-55DC80012D57}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E35BF062-652E-4520-8DD8-55DC80012D57}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E35BF062-652E-4520-8DD8-55DC80012D57}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
5 changes: 4 additions & 1 deletion src/Prism.Core/Prism.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@
<!-- Summary is not actually supported at this time. Including the summary for future support. -->
<!--<Summary>Prism provides an implementation of a collection of design patterns that are helpful in writing well structured and maintainable applications.</Summary>-->
<Description>Prism is a fully open source version of the Prism guidance originally produced by Microsoft Patterns &amp; Practices. Prism provides an implementation of a collection of design patterns that are helpful in writing well structured and maintainable XAML applications, including MVVM, dependency injection, commanding, event aggregation, and more. Prism's core functionality is a shared code base in a Portable Class Library targeting these platforms; WPF, and Xamarin Forms. Features that need to be platform specific are implemented in the respective libraries for the target platform.</Description>
<PackageTags>prism;wpf;xamarin;mvvm;xaml</PackageTags>
<PackageTags>prism;wpf;xamarin;dotnet maui;maui;uno;unoplatform;mvvm;xaml</PackageTags>
</PropertyGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs" DesignTime="True" AutoGen="True" DependentUpon="Resources.resx" />
<EmbeddedResource Update="Properties\Resources.resx" Generator="ResXFileCodeGenerator" LastGenOutput="Resources.Designer.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Prism.Events\Prism.Events.csproj" />
</ItemGroup>

</Project>
23 changes: 2 additions & 21 deletions src/Prism.Core/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.