AssemblyInfo.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using System;
  2. using System.Reflection;
  3. using System.Runtime.CompilerServices;
  4. using System.Runtime.InteropServices;
  5. using System.Windows;
  6. using System.Windows.Markup;
  7. // General Information about an assembly is controlled through the following
  8. // set of attributes. Change these attribute values to modify the information
  9. // associated with an assembly.
  10. [assembly: AssemblyTitle("Caliburn.Micro")]
  11. [assembly: AssemblyDescription("")]
  12. [assembly: AssemblyConfiguration("")]
  13. [assembly: AssemblyCompany("")]
  14. [assembly: AssemblyProduct("Caliburn.Micro")]
  15. [assembly: AssemblyCopyright("Copyright © 2017")]
  16. [assembly: AssemblyTrademark("")]
  17. [assembly: AssemblyCulture("")]
  18. // Setting ComVisible to false makes the types in this assembly not visible
  19. // to COM components. If you need to access a type in this assembly from
  20. // COM, set the ComVisible attribute to true on that type.
  21. [assembly: ComVisible(false)]
  22. // The following GUID is for the ID of the typelib if this project is exposed to COM
  23. [assembly: Guid("31a1fa85-31fe-4bf6-920f-e179be4b1d71")]
  24. // Version information for an assembly consists of the following four values:
  25. //
  26. // Major Version
  27. // Minor Version
  28. // Build Number
  29. // Revision
  30. //
  31. // You can specify all the values or you can default the Build and Revision Numbers
  32. // by using the '*' as shown below:
  33. // [assembly: AssemblyVersion("1.0.*")]
  34. [assembly: AssemblyVersion("1.0.*")]
  35. //[assembly: AssemblyFileVersion("1.0.0.0")]
  36. [assembly: ThemeInfo(
  37. ResourceDictionaryLocation.SourceAssembly, //where theme specific resource dictionaries are located
  38. //(used if a resource is not found in the page,
  39. // or application resource dictionaries)
  40. ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
  41. //(used if a resource is not found in the page,
  42. // app, or any theme specific resource dictionaries)
  43. )]
  44. [assembly: XmlnsDefinition("http://OpenSEMI.Ctrlib.com/presentation", "OpenSEMI.Ctrlib.Controls")]
  45. [assembly: XmlnsDefinition("http://OpenSEMI.Ctrlib.com/presentation", "OpenSEMI.Ctrlib.Types")]
  46. [assembly: XmlnsDefinition("http://OpenSEMI.Ctrlib.com/presentation", "OpenSEMI.Ctrlib.Window")]
  47. [assembly: System.Security.SecurityRules(System.Security.SecurityRuleSet.Level1)]
  48. [assembly: XmlnsDefinition("http://www.caliburn.org", "Caliburn.Micro")]
  49. [assembly: XmlnsPrefix("http://www.caliburn.org", "cal")]
  50. #if !SILVERLIGHT
  51. //[assembly: CLSCompliant(true)]
  52. #endif