From: Tim R. <ti...@us...> - 2004-09-11 17:26:28
|
Update of /cvsroot/csdopenglnet/csdOpenGL/Cg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23493/Cg Modified Files: AssemblyInfo.cs Cg.build Log Message: assemblies are no longer signed AssemblyInfo is created by NAnt Index: Cg.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/Cg.build,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Cg.build 11 Sep 2004 14:27:25 -0000 1.2 --- Cg.build 11 Sep 2004 17:26:18 -0000 1.3 *************** *** 2,5 **** --- 2,6 ---- <project name="OpenGL Tools Library" default="build"> <description>Basic Math Library</description> + <target name="clean" description="remove all generated files"> <delete file="${build.dir}/csDragons.OpenGL.Cg.dll" failonerror="false" /> *************** *** 12,15 **** --- 13,17 ---- </delete> </target> + <target name="wrapper" description="builds GL wrapper"> <foreach item="File" property="filename"> *************** *** 25,29 **** </foreach> </target> ! <target name="build" description="compiles the source code" depends="wrapper"> <csc target="library" output="${build.dir}/csDragons.OpenGL.Cg.dll" debug="${debug}"> <sources> --- 27,59 ---- </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> *************** *** 40,43 **** --- 70,74 ---- <copy file="csDragons.OpenGL.Cg.dll.config" todir="${build.dir}" /> </target> + <target name="samples" description="build demos"> <csc target="exe" output="${build.dir}/demoCg.exe"> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/AssemblyInfo.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AssemblyInfo.cs 5 Aug 2004 16:02:32 -0000 1.1 --- AssemblyInfo.cs 11 Sep 2004 17:26:18 -0000 1.2 *************** *** 1,32 **** using System.Reflection; ! using System.Runtime.CompilerServices; ! ! // Information about this assembly is defined by the following ! // attributes. ! // ! // change them to the information which is associated with the assembly ! // you compile. ! ! [assembly: AssemblyTitle("csDragons.Cg")] ! [assembly: AssemblyDescription("Wrapper-Library for Cg")] ! [assembly: AssemblyConfiguration("")] ! [assembly: AssemblyCompany("csDragons")] ! [assembly: AssemblyProduct("csDragons OpenGL.NET")] ! [assembly: AssemblyCopyright("(C)Copyright 2004 by Tim Rädisch & Kai Reichert")] ! [assembly: AssemblyTrademark("")] ! [assembly: AssemblyCulture("")] ! ! // The assembly version has following format : ! // ! // Major.Minor.Build.Revision ! // ! // You can specify all values by your own or you can build default build and revision ! // numbers with the '*' character (the default): ! [assembly: AssemblyVersion("0.1.*")] ! // The following attributes specify the key for the sign of your assembly. See the ! // .NET Framework documentation for more information about signing. ! // This is not required, if you don't want signing let these attributes like they're. ! [assembly: AssemblyDelaySign(true)] ! [assembly: AssemblyKeyFile("PublicKeyFile.snk")] --- 1,26 ---- + using System; 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-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.1715")] ! [assembly: AssemblyInformationalVersionAttribute("0.2.1")] |