| Jens Geyer | 703200c | 2014-04-15 21:54:55 +0200 | [diff] [blame] | 1 | /* | 
 | 2 |  * Licensed to the Apache Software Foundation (ASF) under one | 
 | 3 |  * or more contributor license agreements. See the NOTICE file | 
 | 4 |  * distributed with this work for additional information | 
 | 5 |  * regarding copyright ownership. The ASF licenses this file | 
 | 6 |  * to you under the Apache License, Version 2.0 (the | 
 | 7 |  * "License"); you may not use this file except in compliance | 
 | 8 |  * with the License. You may obtain a copy of the License at | 
 | 9 |  * | 
 | 10 |  *   http://www.apache.org/licenses/LICENSE-2.0 | 
 | 11 |  * | 
 | 12 |  * Unless required by applicable law or agreed to in writing, | 
 | 13 |  * software distributed under the License is distributed on an | 
 | 14 |  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | 
 | 15 |  * KIND, either express or implied. See the License for the | 
 | 16 |  * specific language governing permissions and limitations | 
 | 17 |  * under the License. | 
 | 18 |  */ | 
 | 19 |  | 
 | 20 | using System.Reflection; | 
| Jens Geyer | 1c99e70 | 2014-03-17 22:50:39 +0200 | [diff] [blame] | 21 | using System.Runtime.CompilerServices; | 
 | 22 | using System.Runtime.InteropServices; | 
 | 23 |  | 
 | 24 | // Allgemeine Informationen über eine Assembly werden über die folgenden  | 
 | 25 | // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, | 
 | 26 | // die mit einer Assembly verknüpft sind. | 
 | 27 | [assembly: AssemblyTitle("JSONTest")] | 
 | 28 | [assembly: AssemblyDescription("")] | 
 | 29 | [assembly: AssemblyConfiguration("")] | 
 | 30 | [assembly: AssemblyCompany("")] | 
 | 31 | [assembly: AssemblyProduct("JSONTest")] | 
 | 32 | [assembly: AssemblyCopyright("Copyright ©  2014")] | 
 | 33 | [assembly: AssemblyTrademark("")] | 
 | 34 | [assembly: AssemblyCulture("")] | 
 | 35 |  | 
 | 36 | // Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar  | 
 | 37 | // für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von  | 
 | 38 | // COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. | 
 | 39 | [assembly: ComVisible(false)] | 
 | 40 |  | 
 | 41 | // Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird | 
 | 42 | [assembly: Guid("2b2e7d56-3e65-4368-92d7-e34d56b7105e")] | 
 | 43 |  | 
 | 44 | // Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: | 
 | 45 | // | 
 | 46 | //      Hauptversion | 
 | 47 | //      Nebenversion  | 
 | 48 | //      Buildnummer | 
 | 49 | //      Revision | 
 | 50 | // | 
 | 51 | // Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern  | 
 | 52 | // übernehmen, indem Sie "*" eingeben: | 
 | 53 | // [assembly: AssemblyVersion("1.0.*")] | 
 | 54 | [assembly: AssemblyVersion("1.0.0.0")] | 
 | 55 | [assembly: AssemblyFileVersion("1.0.0.0")] |