From: Tim R. <ti...@us...> - 2004-09-11 17:26:29
|
Update of /cvsroot/csdopenglnet/csdOpenGL/generator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23493/generator Modified Files: AssemblyInfo.cs Makefile generator.build Log Message: assemblies are no longer signed AssemblyInfo is created by NAnt Index: generator.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/generator.build,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** generator.build 11 Sep 2004 16:12:09 -0000 1.1 --- generator.build 11 Sep 2004 17:26:19 -0000 1.2 *************** *** 2,9 **** <project name="OpenGL" default="build"> <description>OpenGL Wrapper Library</description> <target name="clean" description="remove all generated files"> <delete file="generator.exe" failonerror="false" /> </target> ! <target name="build" description="compiles the source code"> <csc target="exe" output="generator.exe" debug="${debug}"> <sources> --- 2,38 ---- <project name="OpenGL" default="build"> <description>OpenGL Wrapper Library</description> + <target name="clean" description="remove all generated files"> <delete file="generator.exe" failonerror="false" /> </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="true" /> ! <attribute type="AssemblyTitleAttribute" value="csDragons WrapperGenerator" /> ! <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="exe" output="generator.exe" debug="${debug}"> <sources> *************** *** 12,14 **** --- 41,44 ---- </csc> </target> + </project> \ No newline at end of file Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/Makefile,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Makefile 17 Aug 2004 09:04:50 -0000 1.11 --- Makefile 11 Sep 2004 17:26:19 -0000 1.12 *************** *** 3,7 **** CC=mcs DEBUG=/d:DEBUG ! DEBUG= OPTS=$(DEBUG) MCS=$(CC) $(OPTS) --- 3,7 ---- CC=mcs DEBUG=/d:DEBUG ! #DEBUG= OPTS=$(DEBUG) MCS=$(CC) $(OPTS) Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/AssemblyInfo.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** AssemblyInfo.cs 12 Jul 2004 17:17:56 -0000 1.1.1.1 --- AssemblyInfo.cs 11 Sep 2004 17:26:19 -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.OpenGL.WrapperGenerator")] ! [assembly: AssemblyDescription("Generator for creating wrapping libraries")] ! [assembly: AssemblyConfiguration("")] ! [assembly: AssemblyCompany("csDragons")] ! [assembly: AssemblyProduct("csDragons Wrapper Generator")] ! [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(true)] ! [assembly: AssemblyTitleAttribute("csDragons WrapperGenerator")] ! [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")] |