From: Michael D. <mik...@us...> - 2005-04-04 12:35:54
|
Update of /cvsroot/nhibernate/NHibernateContrib/src/NHibernate.Tool.Net2Hbm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24563/src/NHibernate.Tool.Net2Hbm Modified Files: AssemblyInfo.cs NHibernate.Tool.Net2Hbm.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: NHibernate.Tool.Net2Hbm.build =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/NHibernate.Tool.Net2Hbm/NHibernate.Tool.Net2Hbm.build,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NHibernate.Tool.Net2Hbm.build 30 Dec 2004 16:54:02 -0000 1.1 --- NHibernate.Tool.Net2Hbm.build 4 Apr 2005 12:35:40 -0000 1.2 *************** *** 44,59 **** <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="An attribute library which provides support for custom attributes that can be used in the generation of NHibernate mapping files." /> <attribute type="AssemblyCompanyAttribute" value="nhibernate.sourceforge.net" /> <attribute type="AssemblyProductAttribute" value="${nant.project.name}" /> <attribute type="AssemblyCopyrightAttribute" value="Licensed under LGPL." /> ! <attribute type="AssemblyVersionAttribute" value="${project.version}" /> ! <attribute type="AssemblyInformationalVersionAttribute" value="${project.version.major}.${project.version.minor}" /> ! <attribute type="AssemblyFileVersionAttribute" value="${project.version}" /> <attribute type="AssemblyKeyFileAttribute" value="${keyFile}" if="${sign}"/> </attributes> --- 44,61 ---- <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="An attribute library which provides support for custom attributes that can be used in the generation of NHibernate ${project.version} mapping files." /> <attribute type="AssemblyCompanyAttribute" value="nhibernate.sourceforge.net" /> <attribute type="AssemblyProductAttribute" value="${nant.project.name}" /> <attribute type="AssemblyCopyrightAttribute" value="Licensed under LGPL." /> ! <attribute type="AssemblyVersionAttribute" value="0.5.0.0" /> ! <attribute type="AssemblyInformationalVersionAttribute" value="0.5" /> ! <attribute type="AssemblyFileVersionAttribute" value="0.5.0.0" /> <attribute type="AssemblyKeyFileAttribute" value="${keyFile}" if="${sign}"/> </attributes> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/NHibernate.Tool.Net2Hbm/AssemblyInfo.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** AssemblyInfo.cs 4 Apr 2005 04:35:25 -0000 1.5 --- AssemblyInfo.cs 4 Apr 2005 12:35:40 -0000 1.6 *************** *** 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,23 **** //------------------------------------------------------------------------------ [assembly: AssemblyTitleAttribute("NHibernate.Tool.Net2Hbm for Microsoft .NET Framework 1.1")] [assembly: AssemblyDescriptionAttribute("An attribute library which provides support for custom attributes that can be use" + ! "d in the generation of NHibernate mapping files.")] [assembly: AssemblyCompanyAttribute("nhibernate.sourceforge.net")] [assembly: AssemblyProductAttribute("NHibernate.Tool.Net2Hbm")] [assembly: AssemblyCopyrightAttribute("Licensed under LGPL.")] ! [assembly: AssemblyVersionAttribute("0.8.0.0")] ! [assembly: AssemblyInformationalVersionAttribute("0.8")] ! [assembly: AssemblyFileVersionAttribute("0.8.0.0")] --- 13,25 ---- //------------------------------------------------------------------------------ + [assembly: CLSCompliantAttribute(true)] [assembly: AssemblyTitleAttribute("NHibernate.Tool.Net2Hbm for Microsoft .NET Framework 1.1")] [assembly: AssemblyDescriptionAttribute("An attribute library which provides support for custom attributes that can be use" + ! "d in the generation of NHibernate 0.8.0.0 mapping files.")] [assembly: AssemblyCompanyAttribute("nhibernate.sourceforge.net")] [assembly: AssemblyProductAttribute("NHibernate.Tool.Net2Hbm")] [assembly: AssemblyCopyrightAttribute("Licensed under LGPL.")] ! [assembly: AssemblyVersionAttribute("0.5.0.0")] ! [assembly: AssemblyInformationalVersionAttribute("0.5")] ! [assembly: AssemblyFileVersionAttribute("0.5.0.0")] |