From: Michael D. <mik...@us...> - 2005-04-04 12:35:54
|
Update of /cvsroot/nhibernate/NHibernateContrib/src/Nullables In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24563/src/Nullables Modified Files: AssemblyInfo.cs Nullables.build Log Message: Reversioned assemblies to what authors think it should be versioned as. Added CLSCompliantAttribute to all assemblies except hbm2net. Included version of NHibernate that assemblies are built against in the description. Index: Nullables.build =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/Nullables/Nullables.build,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Nullables.build 6 Dec 2004 02:07:26 -0000 1.2 --- Nullables.build 4 Apr 2005 12:35:41 -0000 1.3 *************** *** 44,51 **** --- 44,53 ---- <asminfo output="AssemblyInfo.cs" language="CSharp"> <imports> + <import name="System" /> <import name="System.Reflection" /> <import name="System.Runtime.CompilerServices" /> </imports> <attributes> + <attribute type="CLSCompliantAttribute" value="true" /> <attribute type="AssemblyTitleAttribute" value="${nant.project.name} for ${current.runtime.description}" /> <attribute type="AssemblyDescriptionAttribute" value="A library of Nullable Primitive Types to serve as a bridge to .net-2.0." /> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/Nullables/AssemblyInfo.cs,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** AssemblyInfo.cs 4 Apr 2005 04:35:26 -0000 1.10 --- AssemblyInfo.cs 4 Apr 2005 12:35:40 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + using System; using System.Reflection; using System.Runtime.CompilerServices; *************** *** 5,9 **** // <autogenerated> // This code was generated by a tool. ! // Runtime Version: 1.1.4322.2032 // // Changes to this file may cause incorrect behavior and will be lost if --- 6,10 ---- // <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 *************** *** 12,15 **** --- 13,17 ---- //------------------------------------------------------------------------------ + [assembly: CLSCompliantAttribute(true)] [assembly: AssemblyTitleAttribute("Nullables for Microsoft .NET Framework 1.1")] [assembly: AssemblyDescriptionAttribute("A library of Nullable Primitive Types to serve as a bridge to .net-2.0.")] |