From: Tim R. <ti...@us...> - 2004-09-11 17:26:29
|
Update of /cvsroot/csdopenglnet/csdOpenGL/platform/mono In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23493/platform/mono Modified Files: AssemblyInfo.cs mono.build Log Message: assemblies are no longer signed AssemblyInfo is created by NAnt Index: mono.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/platform/mono/mono.build,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mono.build 11 Sep 2004 12:47:45 -0000 1.2 --- mono.build 11 Sep 2004 17:26:19 -0000 1.3 *************** *** 1,11 **** <?xml version="1.0"?> <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.Platform.dll" failonerror="false" /> </target> ! <target name="build" description="compiles the source code"> <csc target="library" output="${build.dir}/csDragons.OpenGL.Platform.dll" debug="${debug}"> <sources> <include name="GLXTokens.cs" /> <include name="../*.cs" /> --- 1,42 ---- <?xml version="1.0"?> <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.Platform.dll" 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="false" /> ! <attribute type="AssemblyTitleAttribute" value="csDragons OpenGL# Mono-Platform-Bindings" /> ! <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.Platform.dll" debug="${debug}"> <sources> + <include name="AssemblyInfo.cs" /> <include name="GLXTokens.cs" /> <include name="../*.cs" /> *************** *** 26,28 **** --- 57,60 ---- </csc> </target> + </project> \ No newline at end of file Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/platform/mono/AssemblyInfo.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AssemblyInfo.cs 11 Sep 2004 08:10:42 -0000 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")] ! [assembly: AssemblyDescription("Wrapper-Library for OpenGL")] ! [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# Mono-Platform-Bindings")] ! [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")] |