Skip to content

Commit f2c9e93

Browse files
(minor) revert the CompilerMessage attribute, add nowarn in the test project.
1 parent 5433219 commit f2c9e93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/SqlClient.Samples/WpfDataBinding/Program.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module FSharp.Data.Application
2-
2+
#nowarn "101"
33
//open WebApi
44
//let testExternalQuery = new DataAccess.QueryProducts()
55

src/SqlClient/DataTable.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ open System.Collections.Generic
77
open FSharp.Data.SqlClient.Internals
88

99
[<Sealed>]
10-
//[<CompilerMessageAttribute("This API supports the FSharp.Data.SqlClient infrastructure and is not intended to be used directly from your code.", 101, IsHidden = true)>]
10+
[<CompilerMessageAttribute("This API supports the FSharp.Data.SqlClient infrastructure and is not intended to be used directly from your code.", 101, IsHidden = true)>]
1111
[<RequireQualifiedAccessAttribute>]
1212
type DataTable<'T when 'T :> DataRow>(selectCommand: SqlCommand, ?connectionString: Lazy<string>) =
1313
inherit DataTable()

0 commit comments

Comments
 (0)