mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
22 lines
814 B
C#
22 lines
814 B
C#
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
using System.Windows;
|
|
|
|
#if SILVERLIGHT
|
|
[assembly: AssemblyTitle("MapControl.Silverlight")]
|
|
[assembly: AssemblyDescription("XAML Map Control for Silverlight")]
|
|
#else
|
|
[assembly: AssemblyTitle("MapControl.WPF")]
|
|
[assembly: AssemblyDescription("XAML Map Control for WPF")]
|
|
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
|
|
#endif
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("Clemens Fischer")]
|
|
[assembly: AssemblyProduct("XAML Map Control")]
|
|
[assembly: AssemblyCopyright("Copyright © 2013 Clemens Fischer")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
[assembly: AssemblyVersion("1.1.7")]
|
|
[assembly: AssemblyFileVersion("1.1.7")]
|
|
[assembly: ComVisible(false)]
|