Skip to content

Commit

Permalink
Mark protected variables non-CLS-compliant on .NET 1.1
Browse files Browse the repository at this point in the history
SVN: branches/1.2.x@3109
  • Loading branch information
Sergey Koshcheyev committed Nov 18, 2007
1 parent d73dc27 commit 5090da6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/NHibernate/Expression/Order.cs
Expand Up @@ -11,7 +11,14 @@ namespace NHibernate.Expression
[Serializable] [Serializable]
public class Order public class Order
{ {
#if !NET_2_0
[CLSCompliant(false)]
#endif
protected bool _ascending; protected bool _ascending;

#if !NET_2_0
[CLSCompliant(false)]
#endif
protected string _propertyName; protected string _propertyName;


/// <summary> /// <summary>
Expand Down

0 comments on commit 5090da6

Please sign in to comment.