From: Tim R. <ti...@us...> - 2004-09-13 17:13:30
|
Update of /cvsroot/csdopenglnet/csdOpenGL/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1345/tools Modified Files: AssemblyInfo.cs tools.build Added Files: csDragons.OpenGL.Tools.snk Removed Files: PublicKeyFile.snk Log Message: strong names can now be created optional by nant flag --- NEW FILE: csDragons.OpenGL.Tools.snk --- (This appears to be a binary file; contents omitted.) Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/tools/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:23 -0000 1.5 --- AssemblyInfo.cs 13 Sep 2004 17:13:20 -0000 1.6 *************** *** 3,26 **** 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# Tools")] ! [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")] --- 3,33 ---- using System.Runtime.InteropServices; ! [assembly: AssemblyTitle("csDragons OpenGL# Tools")] ! [assembly: AssemblyDescription("Tools lirary for csDragons OpenGL#")] ! [assembly: AssemblyCompany("csDragons")] ! [assembly: AssemblyCopyright("(C)Copyright 2004 by Tim Rädisch & Kai Reichert")] ! [assembly: AssemblyTrademark("")] ! [assembly: AssemblyCulture("")] ! [assembly: AssemblyInformationalVersion("0.2.1") ] ! [assembly: AssemblyVersion("0.2.1.*")] ! ! [assembly: AssemblyDelaySign(false)] ! [assembly: AssemblyDefaultAlias("csDragons.OpenGL.Tools")] ! ! [assembly: ComVisible(false)] ! [assembly: CLSCompliant(false)] ! ! #if DEBUG ! [assembly: AssemblyConfiguration("Debug")] ! [assembly: AssemblyProduct("csDragons OpenGL# Tools *** Debug Build *** ")] ! #else ! [assembly: AssemblyConfiguration("Retail")] ! [assembly: AssemblyProduct("csDragons OpenGL# Tools")] ! #endif ! ! #if STRONG ! [assembly: AssemblyKeyFile(@"csDragons.OpenGL.Tools.snk")] ! #else ! [assembly: AssemblyKeyFile("")] ! #endif Index: tools.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/tools/tools.build,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** tools.build 11 Sep 2004 17:26:20 -0000 1.4 --- tools.build 13 Sep 2004 17:13:20 -0000 1.5 *************** *** 7,39 **** </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# Tools" /> ! <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="create-assemblyinfo"> ! <csc target="library" output="${build.dir}/csDragons.OpenGL.Tools.dll" debug="${debug}"> <sources> <include name="*.cs" /> --- 7,12 ---- </target> ! <target name="build" description="compiles the source code"> ! <csc target="library" output="${build.dir}/csDragons.OpenGL.Tools.dll" debug="${build.debug}" optimize="${build.optimize}" define="${build.debug.define};${build.strong.define}"> <sources> <include name="*.cs" /> --- PublicKeyFile.snk DELETED --- |