Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2008-01-03 12:41:12 +0300
committerjfrijters <jfrijters>2008-01-03 12:41:12 +0300
commit0b98567b0d5761c022f8150ae17eedd9b0f6a52c (patch)
tree3827e9c1f398abdb49bcce2f839286e74dda7c22 /openjdk/AssemblyInfo.java.in
parent098ef07111dcd2e7951a044b100986b3933d7e22 (diff)
- Generate proper InternalsVisibleTo annotation based on whether we're doing a signed or unsigned build.
- Added SecurityCritical and AllowPartiallyTrustedCallers annotation to IKVM.OpenJDK.ClassLibrary.dll.
Diffstat (limited to 'openjdk/AssemblyInfo.java.in')
-rw-r--r--openjdk/AssemblyInfo.java.in58
1 files changed, 58 insertions, 0 deletions
diff --git a/openjdk/AssemblyInfo.java.in b/openjdk/AssemblyInfo.java.in
new file mode 100644
index 00000000..1bf80aa0
--- /dev/null
+++ b/openjdk/AssemblyInfo.java.in
@@ -0,0 +1,58 @@
+/*
+ Copyright (C) 2006, 2007, 2008 Jeroen Frijters
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+
+ Jeroen Frijters
+ jeroen@frijters.net
+
+*/
+
+@cli.System.Reflection.AssemblyCopyrightAttribute.Annotation(
+ "This software is licensed under the GNU General Public License version 2 + \"Classpath\" exception.\r\n" +
+ "See http://www.gnu.org/software/classpath/license.html for details.\r\n" +
+ "Copyright (C) 1988 AT&T\r\n" +
+ "Copyright (C) 2003-2004 BEA Systems\r\n" +
+ "Copyright (C) 2007 Casey Marshall\r\n" +
+ "Copyright (C) 1995 Colin Plumb\r\n" +
+ "Copyright (C) 1999-2007 Free Software Foundation, Inc.\r\n" +
+ "Copyright (C) 2001-2005 freebxml.org\r\n" +
+ "Copyright (C) 1998 FundsXpress, Inc.\r\n" +
+ "Copyright (C) 1993-2005 International Business Machines, Inc.\r\n" +
+ "Copyright (C) 2002-2008 Jeroen Frijters\r\n" +
+ "Copyright (C) 2007 Red Hat, Inc.\r\n" +
+ "Copyright (C) 1994-2007 Sun Microsystems, Inc.\r\n" +
+ "Copyright (C) 1996-1998 Taligent, Inc.\r\n" +
+ "Copyright (C) 2001-2002 Thai Open Source Software Center Ltd\r\n" +
+ "Copyright (C) 1999-2006 The Apache Software Foundation\r\n" +
+ "Copyright (C) 1997 The Open Group Research Institute\r\n" +
+ "Copyright (C) 1991-2007 Unicode, Inc.\r\n" +
+ "Copyright (C) 2003 Wily Technology, Inc.\r\n" +
+ "Copyright (C) 2000-2004 World Wide Web Consortium"
+)
+
+@cli.System.Reflection.AssemblyTitleAttribute.Annotation("IKVM.NET OpenJDK Library for .NET")
+@cli.System.Reflection.AssemblyProductAttribute.Annotation("IKVM.NET")
+@cli.System.Reflection.AssemblyCompanyAttribute.Annotation("Jeroen Frijters")
+
+@cli.System.Runtime.CompilerServices.InternalsVisibleToAttribute.Annotation("@RUNTIME@")
+
+@cli.System.Security.SecurityCriticalAttribute.Annotation
+@cli.System.Security.AllowPartiallyTrustedCallersAttribute.Annotation
+
+// magic type to collect Assembly attributes
+interface assembly {}