From: Tim R. <ti...@us...> - 2004-09-11 18:52:56
|
Update of /cvsroot/csdopenglnet/csdOpenGL/platform/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6134/platform/windows Modified Files: AssemblyInfo.cs windows.build Log Message: adaptation for windows Index: windows.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/platform/windows/windows.build,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** windows.build 11 Sep 2004 17:26:19 -0000 1.2 --- windows.build 11 Sep 2004 18:52:46 -0000 1.3 *************** *** 35,39 **** </target> ! <target name="build" description="compiles the source code" depends="compile-assemblyinfo"> <csc target="library" output="${build.dir}/csDragons.OpenGL.Platform.dll" debug="${debug}"> <sources> --- 35,39 ---- </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> *************** *** 49,51 **** </csc> </target> ! </project> \ No newline at end of file --- 49,51 ---- </csc> </target> ! </project> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/platform/windows/AssemblyInfo.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AssemblyInfo.cs 11 Sep 2004 08:26:38 -0000 1.1 --- AssemblyInfo.cs 11 Sep 2004 18:52:46 -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,27 ---- + using System; using System.Reflection; ! using System.Runtime.InteropServices; ! //------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // 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# Windows-Platform-Bindings")] ! [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("net-1.1.win32")] ! [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")] |