From: Tim R. <ti...@us...> - 2004-09-13 17:13:58
|
Update of /cvsroot/csdopenglnet/csdOpenGL/GL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1345/GL Modified Files: AssemblyInfo.cs GL.build Makefile Added Files: csDragons.OpenGL.snk Removed Files: PublicKeyFile.snk Log Message: strong names can now be created optional by nant flag --- NEW FILE: csDragons.OpenGL.snk --- (This appears to be a binary file; contents omitted.) Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/AssemblyInfo.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** AssemblyInfo.cs 11 Sep 2004 22:42:20 -0000 1.5 --- AssemblyInfo.cs 13 Sep 2004 17:13:17 -0000 1.6 *************** *** 2,26 **** using System.Reflection; using System.Runtime.InteropServices; - // ------------------------------------------------------------------------------ - // <autogenerated> - // This code was generated by a tool. - // Mono Runtime Version: 1.1.4322.573 - // - // Changes to this file may cause incorrect behavior and will be lost if - // the code is regenerated. - // </autogenerated> - // ------------------------------------------------------------------------------ ! [assembly: ComVisibleAttribute(false)] ! [assembly: CLSCompliantAttribute(false)] ! [assembly: AssemblyTitleAttribute("csDragons OpenGL#")] ! [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] ! [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] ! [assembly: AssemblyProductAttribute("wrapper-generator")] ! [assembly: AssemblyCopyrightAttribute("Copyright (C) 2004-2004 Tim Raedisch and Kai Reichert")] ! [assembly: AssemblyTrademarkAttribute("")] ! [assembly: AssemblyCultureAttribute("")] ! [assembly: AssemblyVersionAttribute("0.2.1.1716")] ! [assembly: AssemblyInformationalVersionAttribute("0.2.1")] --- 2,38 ---- using System.Reflection; using System.Runtime.InteropServices; + using System.Security; + using System.Security.Permissions; ! [assembly: AllowPartiallyTrustedCallers] ! [assembly: AssemblyTitle("csDragons OpenGL#")] ! [assembly: AssemblyDescription("OpenGL for .NET using C#")] ! [assembly: AssemblyCompany("csDragons")] ! [assembly: AssemblyCopyright("(C)Copyright 2004 by Tim Rädisch & Kai Reichert")] ! [assembly: AssemblyTrademark("")] ! [assembly: AssemblyCulture("")] ! [assembly: AssemblyDefaultAlias("csDragons.OpenGL")] ! ! [assembly: AssemblyInformationalVersion("0.2.1") ] ! [assembly: AssemblyVersion("0.2.0.*")] ! ! [assembly: AssemblyDelaySign(false)] ! ! [assembly: ComVisible(false)] ! [assembly: CLSCompliant(false)] ! ! ! #if DEBUG ! [assembly: AssemblyConfiguration("Debug")] ! [assembly: AssemblyProduct("csDragons OpenGL# *** Debug Build *** ")] ! #else ! [assembly: AssemblyConfiguration("Retail")] ! [assembly: AssemblyProduct("csDragons OpenGL#")] ! #endif ! ! #if STRONG ! [assembly: AssemblyKeyFile(@"csDragons.OpenGL.snk")] ! #else ! [assembly: AssemblyKeyFile("")] ! #endif Index: GL.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/GL.build,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** GL.build 12 Sep 2004 11:41:59 -0000 1.4 --- GL.build 13 Sep 2004 17:13:17 -0000 1.5 *************** *** 27,60 **** </foreach> </target> ! ! <target name="create-assemblyinfo"> ! <!-- ensure AssemblyInfo.cs is writable if it already exists --> ! <attrib file="AssemblyInfo.cs" readonly="false" if="${file::exists('AssemblyInfo.cs')}" /> ! <!-- generate the source file holding the assembly-level attributes --> ! <asminfo output="AssemblyInfo.cs" language="CSharp"> ! <imports> ! <import name="System" /> ! <import name="System.Reflection" /> ! <import name="System.Runtime.InteropServices" /> ! </imports> ! <attributes> ! <attribute type="ComVisibleAttribute" value="false" /> ! <attribute type="CLSCompliantAttribute" value="false" /> ! <attribute type="AssemblyTitleAttribute" value="csDragons OpenGL#" /> ! <attribute type="AssemblyDescriptionAttribute" value="A tool to build C# bindings" /> ! <attribute type="AssemblyConfigurationAttribute" value="${framework::get-target-framework()}.${platform::get-name()}" /> ! <attribute type="AssemblyCompanyAttribute" value="http://www.csdragons.de" /> ! <attribute type="AssemblyProductAttribute" value="wrapper-generator" /> ! <attribute type="AssemblyCopyrightAttribute" value="Copyright (C) 2004-${datetime::get-year(datetime::now())} Tim Raedisch and Kai Reichert" /> ! <attribute type="AssemblyTrademarkAttribute" value="" /> ! <attribute type="AssemblyCultureAttribute" value="" /> ! <attribute type="AssemblyVersionAttribute" value="${project.version}.${build.number}" /> ! <attribute type="AssemblyInformationalVersionAttribute" value="${project.version}" /> ! </attributes> ! </asminfo> ! </target> ! ! <target name="build" description="compiles the source code" depends="wrapper create-assemblyinfo"> ! <csc target="library" output="${build.dir}/csDragons.OpenGL.dll" debug="${debug}"> <sources> <include name="AssemblyInfo.cs" /> --- 27,33 ---- </foreach> </target> ! ! <target name="build" description="compiles the source code" depends="wrapper"> ! <csc target="library" output="${build.dir}/csDragons.OpenGL.dll" debug="${build.debug}" optimize="${build.optimize}" define="${build.debug.define};${build.strong.define}"> <sources> <include name="AssemblyInfo.cs" /> Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile 11 Sep 2004 20:41:57 -0000 1.9 --- Makefile 13 Sep 2004 17:13:17 -0000 1.10 *************** *** 1,5 **** FILES=gl.xml.cs csdGL.cs glu.xml.cs glut.xml.cs Exceptions.cs DelegateCallingConventionCdeclAttribute.cs ! GEN=mono ../generator/csdGenerator.exe CC=mcs --- 1,5 ---- FILES=gl.xml.cs csdGL.cs glu.xml.cs glut.xml.cs Exceptions.cs DelegateCallingConventionCdeclAttribute.cs ! GEN=mono ../generator/generator.exe CC=mcs --- PublicKeyFile.snk DELETED --- |