37 lines
2.1 KiB
C#
37 lines
2.1 KiB
C#
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
// Allgemeine Informationen über eine Assembly werden über die folgenden
|
|
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
|
|
// die einer Assembly zugeordnet sind.
|
|
[assembly: AssemblyTitle("Unosquare SWAN")]
|
|
[assembly: AssemblyDescription("Repeating code and reinventing the wheel is generally considered bad practice. At Unosquare we are committed to beautiful code and great software. Swan is a collection of classes and extension methods that we and other good developers have developed and evolved over the years. We found ourselves copying and pasting the same code for every project every time we started it. We decide to kill that cycle once and for all. This is the result of that idea. Our philosophy is that SWAN should have no external dependencies, it should be cross-platform, and it should be useful.")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("Unosquare")]
|
|
[assembly: AssemblyProduct("Unosquare.Swan.Lite")]
|
|
[assembly: AssemblyCopyright("Copyright (c) 2016-2019 - Unosquare")]
|
|
[assembly: AssemblyTrademark("https://github.com/unosquare/swan")]
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
|
|
// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von
|
|
// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen.
|
|
[assembly: ComVisible(false)]
|
|
|
|
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
|
|
[assembly: Guid("ab015683-62e5-47f1-861f-6d037f9c6433")]
|
|
|
|
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
|
|
//
|
|
// Hauptversion
|
|
// Nebenversion
|
|
// Buildnummer
|
|
// Revision
|
|
//
|
|
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
|
|
// indem Sie "*" wie unten gezeigt eingeben:
|
|
// [assembly: AssemblyVersion("1.0.*")]
|
|
[assembly: AssemblyVersion("1.0.0")]
|
|
[assembly: AssemblyFileVersion("1.0.0")]
|