- Started Windows, Metro and Linux Platform-Plugins - Moved the RecordingSample to the Samples folder - Started two samples for using the graphics device in a WinForms and Wpf Editor - Refactorings in the AddIn-System - Moved the Window initialization-code to the Platform modules - Changed the License text in all code files which is now way smaller - Started ProjectConverter tool which converts all the projects and solution to the target configuration - Changed the SupportedPlatform names in the Resource files - Changed the WIN8 define to WINDOWSMETRO which is actually meant - Removed NLog and started our own Logger class - Many more stuff...
35 lines
1.4 KiB
C#
35 lines
1.4 KiB
C#
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
// Allgemeine Informationen über eine Assembly werden über den folgenden
|
|
// Satz von Attributen kontrolliert. Ändern Sie diese Attributwerte, um die mit einer Assembly
|
|
// verbundenen Informationen zu ändern.
|
|
[assembly: AssemblyTitle("RecordingSample")]
|
|
[assembly: AssemblyProduct("RecordingSample")]
|
|
[assembly: AssemblyDescription("")]
|
|
[assembly: AssemblyCompany("")]
|
|
[assembly: AssemblyCopyright("Copyright © 2011")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
// Bei Einstellung von ComVisible auf falsch sind die Typen in dieser Assembly für
|
|
// COM-Komponenten nicht sichtbar. Wenn Sie von COM aus auf einen Typ in dieser Assembly
|
|
// zugreifen müssen, stellen Sie das Attribut ComVisible bei diesem Typ auf wahr ein. Nur Windows-
|
|
// Assemblys unterstützen COM.
|
|
[assembly: ComVisible(false)]
|
|
|
|
// Auf Windows gilt die folgende GUID für die ID von typelib, wenn dieses
|
|
// COM ausgesetzt ist. Auf anderen Plattformen identifiziert sie den
|
|
// Titelspeichercontainer bei Bereitstellung dieser Assembly auf dem Gerät eindeutig.
|
|
[assembly: Guid("199e53b1-c103-417e-9c77-c650504fd35f")]
|
|
|
|
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
|
|
//
|
|
// Größere Version
|
|
// Kleinere Version
|
|
// Build-Nummer
|
|
// Revision
|
|
//
|
|
[assembly: AssemblyVersion("1.0.0.0")]
|