From: Tim R. <ti...@us...> - 2004-09-13 17:13:58
|
Update of /cvsroot/csdopenglnet/csdOpenGL/Cg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1345/Cg Modified Files: AssemblyInfo.cs Cg.build Makefile Added Files: csDragons.OpenGL.Cg.snk Removed Files: PublicKeyFile.snk Log Message: strong names can now be created optional by nant flag --- NEW FILE: csDragons.OpenGL.Cg.snk --- (This appears to be a binary file; contents omitted.) Index: Cg.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/Cg.build,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Cg.build 12 Sep 2004 11:41:59 -0000 1.5 --- Cg.build 13 Sep 2004 17:13:17 -0000 1.6 *************** *** 29,62 **** </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-Cg#" /> ! <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.Cg.dll" debug="${debug}"> <sources> <include name="AssemblyInfo.cs" /> --- 29,35 ---- </foreach> </target> ! ! <target name="build" description="compiles the source code" depends="wrapper"> ! <csc target="library" output="${build.dir}/csDragons.OpenGL.Cg.dll" debug="${build.debug}" optimize="${build.optimize}" define="${build.debug.define};${build.strong.define}"> <sources> <include name="AssemblyInfo.cs" /> *************** *** 82,86 **** <target name="samples" description="build demos"> ! <csc target="exe" output="${build.dir}/demoCg.exe" debug="${debug}"> <sources> <include name="demoCg.cs" /> --- 55,59 ---- <target name="samples" description="build demos"> ! <csc target="exe" output="${build.dir}/demoCg.exe" debug="${build.debug}" optimize="${build.optimize}" define="${build.debug.define};${build.strong.define}"> <sources> <include name="demoCg.cs" /> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/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:19 -0000 1.5 --- AssemblyInfo.cs 13 Sep 2004 17:13:16 -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-Cg#")] ! [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# Cg#")] ! [assembly: AssemblyDescription("Cg binding for .NET written in C#")] ! [assembly: AssemblyCompany("csDragons")] ! [assembly: AssemblyCopyright("(C)Copyright 2004 by Tim Rädisch & Kai Reichert")] ! [assembly: AssemblyTrademark("")] ! [assembly: AssemblyCulture("")] ! [assembly: AssemblyDefaultAlias("csDragons.OpenGL.Cg")] ! [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# Cg *** Debug Build *** ")] ! #else ! [assembly: AssemblyConfiguration("Retail")] ! [assembly: AssemblyProduct("csDragons OpenGL# Cg")] ! #endif ! ! #if STRONG ! [assembly: AssemblyKeyFile(@"csDragons.OpenGL.Cg.snk")] ! #else ! [assembly: AssemblyKeyFile("")] ! #endif Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/Makefile,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Makefile 11 Sep 2004 22:42:20 -0000 1.17 --- Makefile 13 Sep 2004 17:13:17 -0000 1.18 *************** *** 1,5 **** FILES=cg.xml.cs cgGL.xml.cs AssemblyInfo.cs csdCg.cs cgType.cs cgRessource.cs cgProfile.cs cgError.cs cgEnums.cs cgGLEnum.cs ! GEN=mono ../generator/csdGenerator.exe CC=mcs --- 1,5 ---- FILES=cg.xml.cs cgGL.xml.cs AssemblyInfo.cs csdCg.cs cgType.cs cgRessource.cs cgProfile.cs cgError.cs cgEnums.cs cgGLEnum.cs ! GEN=mono ../generator/generator.exe CC=mcs --- PublicKeyFile.snk DELETED --- |