From: Tim R. <ti...@us...> - 2004-09-13 17:13:29
|
Update of /cvsroot/csdopenglnet/csdOpenGL/platform/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1345/platform/windows Modified Files: AssemblyInfo.cs windows.build Removed Files: PublicKeyFile.snk Log Message: strong names can now be created optional by nant flag Index: windows.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/platform/windows/windows.build,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** windows.build 12 Sep 2004 11:42:00 -0000 1.4 --- windows.build 13 Sep 2004 17:13:20 -0000 1.5 *************** *** 4,40 **** <description>Basic Math Library</description> - <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# Windows-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="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" depends="create-assemblyinfo"> ! <csc target="library" output="${build.dir}/csDragons.OpenGL.Platform.dll" debug="${debug}"> <sources> <include name="AssemblyInfo.cs" /> --- 4,13 ---- <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="${build.debug}" optimize="${build.optimize}" define="${build.debug.define};${build.strong.define}"> <sources> <include name="AssemblyInfo.cs" /> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/platform/windows/AssemblyInfo.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AssemblyInfo.cs 11 Sep 2004 18:52:46 -0000 1.2 --- AssemblyInfo.cs 13 Sep 2004 17:13:19 -0000 1.3 *************** *** 3,27 **** 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")] --- 3,33 ---- using System.Runtime.InteropServices; ! [assembly: AssemblyTitle("csDragons OpenGL# Windows Bindings")] ! [assembly: AssemblyDescription("Platform specific bindings for csDragons OpenGL#")] ! [assembly: AssemblyCompany("csDragons")] ! [assembly: AssemblyCopyright("(C)Copyright 2004 by Tim Rädisch & Kai Reichert")] ! [assembly: AssemblyTrademark("")] ! [assembly: AssemblyCulture("")] ! [assembly: AssemblyInformationalVersion("0.2.1") ] ! [assembly: AssemblyVersion("0.2.1.*")] ! ! [assembly: AssemblyDelaySign(false)] ! [assembly: AssemblyDefaultAlias("csDragons.OpenGL.Platform")] ! ! [assembly: ComVisible(false)] ! [assembly: CLSCompliant(false)] ! ! #if DEBUG ! [assembly: AssemblyConfiguration("Debug")] ! [assembly: AssemblyProduct("csDragons OpenGL# Windows-Bindings *** Debug Build *** ")] ! #else ! [assembly: AssemblyConfiguration("Retail")] ! [assembly: AssemblyProduct("csDragons OpenGL# Windows-Bindings")] ! #endif + #if STRONG + [assembly: AssemblyKeyFile(@"../csDragons.OpenGL.Platform.snk")] + #else + [assembly: AssemblyKeyFile("")] + #endif --- PublicKeyFile.snk DELETED --- |