-
Notifications
You must be signed in to change notification settings - Fork 779
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#449 Correct assembly info over projects
- Loading branch information
1 parent
00681ba
commit 3f57ce1
Showing
4 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
using System; | ||
using System.Reflection; | ||
|
||
[assembly: AssemblyTitle("Caliburn Micro Platform Core")] | ||
[assembly: AssemblyDescription("A small, yet powerful framework designed for Xaml platforms, Caliburn.Micro implements a variety of UI patterns for solving real-world problems. Patterns that are highlighted include MVVM (Presentation Model), MVP and MVC.")] | ||
|
||
[assembly: CLSCompliant(true)] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System; | ||
using System.Reflection; | ||
#if NET | ||
using System.Runtime.InteropServices; | ||
using System.Windows.Markup; | ||
#endif | ||
|
||
[assembly: AssemblyTitle("Caliburn Micro Platform")] | ||
[assembly: AssemblyDescription("A small, yet powerful framework designed for Xaml platforms, Caliburn.Micro implements a variety of UI patterns for solving real-world problems. Patterns that are highlighted include MVVM (Presentation Model), MVP and MVC.")] | ||
|
||
[assembly: CLSCompliant(true)] | ||
|
||
#if NET | ||
[assembly: Guid("6449e9cb-4d4d-4d79-8f73-71a2fc647109")] | ||
[assembly: XmlnsDefinition("http://www.caliburnproject.org", "Caliburn.Micro")] | ||
[assembly: XmlnsPrefix("http://www.caliburnproject.org", "cal")] | ||
#endif |