From: Michael D. <mik...@us...> - 2005-04-04 12:35:53
|
Update of /cvsroot/nhibernate/NHibernateContrib/src/NHibernate.Tool.hbm2net In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24563/src/NHibernate.Tool.hbm2net Modified Files: AssemblyInfo.cs NHibernate.Tool.hbm2net.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.hbm2net.build =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/NHibernate.Tool.hbm2net/NHibernate.Tool.hbm2net.build,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NHibernate.Tool.hbm2net.build 30 Dec 2004 16:54:54 -0000 1.1 --- NHibernate.Tool.hbm2net.build 4 Apr 2005 12:35:39 -0000 1.2 *************** *** 24,39 **** <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="Tool to Generate Classes from hbm.xml 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="AssemblyDelaySignAttribute" value="false" /> </attributes> --- 24,46 ---- <asminfo output="AssemblyInfo.cs" language="CSharp"> <imports> + <import name="System" /> <import name="System.Reflection" /> <import name="System.Runtime.CompilerServices" /> </imports> <attributes> + <!-- + looks like NVelocity is not CLSCompliant, instead of going through and finding + each item that returns/uses NVelocity just mark this Assembly and non-compliant. + Mostly used from NAnt anyway and that doesn't seem to care about CLSCompliant + --> + <attribute type="CLSCompliantAttribute" value="false" /> <attribute type="AssemblyTitleAttribute" value="${nant.project.name} for ${current.runtime.description}" /> ! <attribute type="AssemblyDescriptionAttribute" value="Tool to Generate Classes from NHibernate ${project.version} hbm.xml 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.1.0.0" /> ! <attribute type="AssemblyInformationalVersionAttribute" value="0.1" /> ! <attribute type="AssemblyFileVersionAttribute" value="0.1.0.0" /> <attribute type="AssemblyDelaySignAttribute" value="false" /> </attributes> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/NHibernate.Tool.hbm2net/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:26 -0000 1.5 --- AssemblyInfo.cs 4 Apr 2005 12:35:39 -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.hbm2net for Microsoft .NET Framework 1.1")] ! [assembly: AssemblyDescriptionAttribute("Tool to Generate Classes from hbm.xml files.")] [assembly: AssemblyCompanyAttribute("nhibernate.sourceforge.net")] [assembly: AssemblyProductAttribute("NHibernate.Tool.hbm2net")] [assembly: AssemblyCopyrightAttribute("Licensed under LGPL.")] ! [assembly: AssemblyVersionAttribute("0.8.0.0")] ! [assembly: AssemblyInformationalVersionAttribute("0.8")] ! [assembly: AssemblyFileVersionAttribute("0.8.0.0")] [assembly: AssemblyDelaySignAttribute(false)] --- 13,25 ---- //------------------------------------------------------------------------------ + [assembly: CLSCompliantAttribute(false)] [assembly: AssemblyTitleAttribute("NHibernate.Tool.hbm2net for Microsoft .NET Framework 1.1")] ! [assembly: AssemblyDescriptionAttribute("Tool to Generate Classes from NHibernate 0.8.0.0 hbm.xml files.")] [assembly: AssemblyCompanyAttribute("nhibernate.sourceforge.net")] [assembly: AssemblyProductAttribute("NHibernate.Tool.hbm2net")] [assembly: AssemblyCopyrightAttribute("Licensed under LGPL.")] ! [assembly: AssemblyVersionAttribute("0.1.0.0")] ! [assembly: AssemblyInformationalVersionAttribute("0.1")] ! [assembly: AssemblyFileVersionAttribute("0.1.0.0")] [assembly: AssemblyDelaySignAttribute(false)] |