From: Michael D. <mik...@us...> - 2005-04-04 12:35:53
|
Update of /cvsroot/nhibernate/NHibernateContrib/src/Nullables.NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24563/src/Nullables.NHibernate Modified Files: AssemblyInfo.cs Nullables.NHibernate.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.NHibernate.build =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/Nullables.NHibernate/Nullables.NHibernate.build,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Nullables.NHibernate.build 6 Dec 2004 02:07:26 -0000 1.2 --- Nullables.NHibernate.build 4 Apr 2005 12:35:41 -0000 1.3 *************** *** 1,3 **** ! <?xml version="1.0" ?> <project --- 1,3 ---- ! <?xml version="1.0" ?> <project *************** *** 43,52 **** <asminfo output="AssemblyInfo.cs" language="CSharp"> <imports> <import name="System.Reflection" /> <import name="System.Runtime.CompilerServices" /> </imports> <attributes> <attribute type="AssemblyTitleAttribute" value="${nant.project.name} for ${current.runtime.description}" /> ! <attribute type="AssemblyDescriptionAttribute" value="The NHibernate Types for the Nullables." /> <attribute type="AssemblyCompanyAttribute" value="nhibernate.sourceforge.net" /> <attribute type="AssemblyProductAttribute" value="${nant.project.name}" /> --- 43,54 ---- <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="The NHibernate ${project.version} Types for the Nullables." /> <attribute type="AssemblyCompanyAttribute" value="nhibernate.sourceforge.net" /> <attribute type="AssemblyProductAttribute" value="${nant.project.name}" /> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/Nullables.NHibernate/AssemblyInfo.cs,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** AssemblyInfo.cs 4 Apr 2005 04:35:26 -0000 1.9 --- AssemblyInfo.cs 4 Apr 2005 12:35:41 -0000 1.10 *************** *** 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,17 **** //------------------------------------------------------------------------------ [assembly: AssemblyTitleAttribute("Nullables.NHibernate for Microsoft .NET Framework 1.1")] ! [assembly: AssemblyDescriptionAttribute("The NHibernate Types for the Nullables.")] [assembly: AssemblyCompanyAttribute("nhibernate.sourceforge.net")] [assembly: AssemblyProductAttribute("Nullables.NHibernate")] --- 13,19 ---- //------------------------------------------------------------------------------ + [assembly: CLSCompliantAttribute(true)] [assembly: AssemblyTitleAttribute("Nullables.NHibernate for Microsoft .NET Framework 1.1")] ! [assembly: AssemblyDescriptionAttribute("The NHibernate 0.8.0.0 Types for the Nullables.")] [assembly: AssemblyCompanyAttribute("nhibernate.sourceforge.net")] [assembly: AssemblyProductAttribute("Nullables.NHibernate")] |