@@ -115,10 +115,10 @@ public static ColumnInfo GetScoreColumnInfo(IExceptionContext ectx, ISchema sche
115115 ColumnInfo info ;
116116 if ( ! string . IsNullOrWhiteSpace ( name ) )
117117 {
118- #pragma warning disable TLC_ContractsNameUsesNameof
118+ #pragma warning disable MSML_ContractsNameUsesNameof
119119 if ( ! ColumnInfo . TryCreateFromName ( schema , name , out info ) )
120120 throw ectx . ExceptUserArg ( argName , "Score column is missing" ) ;
121- #pragma warning restore TLC_ContractsNameUsesNameof
121+ #pragma warning restore MSML_ContractsNameUsesNameof
122122 return info ;
123123 }
124124
@@ -145,9 +145,9 @@ public static ColumnInfo GetScoreColumnInfo(IExceptionContext ectx, ISchema sche
145145 if ( ! string . IsNullOrWhiteSpace ( defName ) && ColumnInfo . TryCreateFromName ( schema , defName , out info ) )
146146 return info ;
147147
148- #pragma warning disable TLC_ContractsNameUsesNameof
148+ #pragma warning disable MSML_ContractsNameUsesNameof
149149 throw ectx . ExceptUserArg ( argName , "Score column is missing" ) ;
150- #pragma warning restore TLC_ContractsNameUsesNameof
150+ #pragma warning restore MSML_ContractsNameUsesNameof
151151 }
152152
153153 /// <summary>
@@ -168,12 +168,12 @@ public static ColumnInfo GetOptAuxScoreColumnInfo(IExceptionContext ectx, ISchem
168168 if ( ! string . IsNullOrWhiteSpace ( name ) )
169169 {
170170 ColumnInfo info ;
171- #pragma warning disable TLC_ContractsNameUsesNameof
171+ #pragma warning disable MSML_ContractsNameUsesNameof
172172 if ( ! ColumnInfo . TryCreateFromName ( schema , name , out info ) )
173173 throw ectx . ExceptUserArg ( argName , "{0} column is missing" , valueKind ) ;
174174 if ( ! testType ( info . Type ) )
175175 throw ectx . ExceptUserArg ( argName , "{0} column has incompatible type" , valueKind ) ;
176- #pragma warning restore TLC_ContractsNameUsesNameof
176+ #pragma warning restore MSML_ContractsNameUsesNameof
177177 return info ;
178178 }
179179
0 commit comments