From: Michael D. <mik...@us...> - 2005-04-17 17:16:46
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10283/NHibernate Modified Files: ICriteria.cs NHibernate-1.1.csproj NHibernate.build Log Message: Fixed up the QBE portion of NHibernate.Expression. Index: NHibernate-1.1.csproj =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate-1.1.csproj,v retrieving revision 1.80 retrieving revision 1.81 diff -C2 -d -r1.80 -r1.81 *** NHibernate-1.1.csproj 8 Apr 2005 04:27:27 -0000 1.80 --- NHibernate-1.1.csproj 17 Apr 2005 17:16:04 -0000 1.81 *************** *** 35,39 **** IncrementalBuild = "true" NoStdLib = "false" ! NoWarn = "" Optimize = "false" OutputPath = "bin\Debug\" --- 35,39 ---- IncrementalBuild = "true" NoStdLib = "false" ! NoWarn = "1573;1591" Optimize = "false" OutputPath = "bin\Debug\" Index: ICriteria.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/ICriteria.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ICriteria.cs 14 Mar 2005 18:54:43 -0000 1.8 --- ICriteria.cs 17 Apr 2005 17:16:04 -0000 1.9 *************** *** 60,64 **** /// <param name="expression"></param> /// <returns></returns> ! ICriteria Add( Expression.Expression expression ); /// <summary> --- 60,64 ---- /// <param name="expression"></param> /// <returns></returns> ! ICriteria Add( Expression.ICriterion expression ); /// <summary> *************** *** 79,83 **** /// resulting expression. /// </summary> ! Expression.Expression Expression { get; } /// <summary> --- 79,83 ---- /// resulting expression. /// </summary> ! Expression.ICriterion Expression { get; } /// <summary> Index: NHibernate.build =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate.build,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** NHibernate.build 23 Jan 2005 16:26:10 -0000 1.9 --- NHibernate.build 17 Apr 2005 17:16:04 -0000 1.10 *************** *** 70,74 **** --- 70,93 ---- output="${build.dir}/bin/${nant.project.name}.dll" doc="${build.dir}/bin/${nant.project.name}.xml" + nowarn="1573,1591" > + <!-- + Documentation related warnings. Basically it's not going to output a warning when there + is no attempt at documentation. If the code has documentation but there is a problem with + it then lets warn the developer during the build. + + CS1571: XML comment on 'construct' has a duplicate param tag for 'parameter' + CS1572: XML comment on 'construct' has a param tag for 'parameter', but there is no parameter by that name + CS1573: Parameter 'parameter' has no matching param tag in XML comment (but other parameters do) + CS1574: XML comment on 'construct' has cref attribute 'item' that could not be found + CS1580: Invalid type for parameter 'parameter number' in XML comment cref attribute + CS1581: Invalid return type in XML comment cref attribute + CS1584: XML comment on 'member' has syntactically incorrect cref attribute 'invalid_syntax' + CS1587: XML comment is not placed on a valid language element + CS1589: Unable to include XML fragment 'fragment' of file 'file' -- reason + CS1590: Invalid XML include element -- Missing file attribute + CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' + CS1592: Badly formed XML in included comments file -- 'reason' + --> <sources failonempty="true"> |