Skip to content

Commit 4e69b57

Browse files
committed
Merge branch 'fsprojects-master'
2 parents a970451 + 78701ae commit 4e69b57

13 files changed

Lines changed: 60 additions & 50 deletions

File tree

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
// Auto-Generated by FAKE; do not edit
1+
// Auto-Generated by FAKE; do not edit
22
namespace System
33
open System.Reflection
44

55
[<assembly: AssemblyTitleAttribute("SQLProvider.Common")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type provider for SQL database access, common library")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.13")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.5.13")>]
810
[<assembly: AssemblyVersionAttribute("1.5.14")>]
911
[<assembly: AssemblyFileVersionAttribute("1.5.14")>]
1012
do ()
@@ -13,5 +15,7 @@ module internal AssemblyVersionInformation =
1315
let [<Literal>] AssemblyTitle = "SQLProvider.Common"
1416
let [<Literal>] AssemblyProduct = "SQLProvider"
1517
let [<Literal>] AssemblyDescription = "Type provider for SQL database access, common library"
18+
let [<Literal>] AssemblyVersion = "1.5.13"
19+
let [<Literal>] AssemblyFileVersion = "1.5.13"
1620
let [<Literal>] AssemblyVersion = "1.5.14"
1721
let [<Literal>] AssemblyFileVersion = "1.5.14"

src/SQLProvider.Common/Ssdt.DacpacParser.fs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,9 @@ let toXmlNamespaceDoc ns xml =
162162

163163
doc, node, nodes
164164

165-
let attMaybe (nm: string) (node: XmlNode) =
165+
let attMaybe (nm: string) (node: XmlNode) =
166+
if isNull node.Attributes then None
167+
else
166168
node.Attributes
167169
|> Seq.cast<XmlAttribute>
168170
|> Seq.tryFind (fun a -> a.Name = nm)
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
// Auto-Generated by FAKE; do not edit
1+
// Auto-Generated by FAKE; do not edit
22
namespace System
33
open System.Reflection
44

55
[<assembly: AssemblyTitleAttribute("SQLProvider.DuckDb.Runtime")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type providers for DuckDb database access.")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.13")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.5.13")>]
810
[<assembly: AssemblyVersionAttribute("1.5.14")>]
911
[<assembly: AssemblyFileVersionAttribute("1.5.14")>]
1012
do ()
@@ -13,5 +15,7 @@ module internal AssemblyVersionInformation =
1315
let [<Literal>] AssemblyTitle = "SQLProvider.DuckDb.Runtime"
1416
let [<Literal>] AssemblyProduct = "SQLProvider"
1517
let [<Literal>] AssemblyDescription = "Type providers for DuckDb database access."
18+
let [<Literal>] AssemblyVersion = "1.5.13"
19+
let [<Literal>] AssemblyFileVersion = "1.5.13"
1620
let [<Literal>] AssemblyVersion = "1.5.14"
1721
let [<Literal>] AssemblyFileVersion = "1.5.14"
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
// Auto-Generated by FAKE; do not edit
1+
// Auto-Generated by FAKE; do not edit
22
namespace System
33
open System.Reflection
44

55
[<assembly: AssemblyTitleAttribute("SQLProvider.Firebird.Runtime")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type providers for Firebird database access.")>]
8-
[<assembly: AssemblyVersionAttribute("1.5.14")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.5.14")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.13")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.5.13")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "SQLProvider.Firebird.Runtime"
1414
let [<Literal>] AssemblyProduct = "SQLProvider"
1515
let [<Literal>] AssemblyDescription = "Type providers for Firebird database access."
16-
let [<Literal>] AssemblyVersion = "1.5.14"
17-
let [<Literal>] AssemblyFileVersion = "1.5.14"
16+
let [<Literal>] AssemblyVersion = "1.5.13"
17+
let [<Literal>] AssemblyFileVersion = "1.5.13"
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
// Auto-Generated by FAKE; do not edit
1+
// Auto-Generated by FAKE; do not edit
22
namespace System
33
open System.Reflection
44

55
[<assembly: AssemblyTitleAttribute("SQLProvider.MsAccess.Runtime")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type providers for Microsoft Access database access.")>]
8-
[<assembly: AssemblyVersionAttribute("1.5.14")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.5.14")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.13")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.5.13")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "SQLProvider.MsAccess.Runtime"
1414
let [<Literal>] AssemblyProduct = "SQLProvider"
1515
let [<Literal>] AssemblyDescription = "Type providers for Microsoft Access database access."
16-
let [<Literal>] AssemblyVersion = "1.5.14"
17-
let [<Literal>] AssemblyFileVersion = "1.5.14"
16+
let [<Literal>] AssemblyVersion = "1.5.13"
17+
let [<Literal>] AssemblyFileVersion = "1.5.13"
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
// Auto-Generated by FAKE; do not edit
1+
// Auto-Generated by FAKE; do not edit
22
namespace System
33
open System.Reflection
44

55
[<assembly: AssemblyTitleAttribute("SQLProvider.MySql.Runtime")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type providers for MySQL database and MariaDB database access.")>]
8-
[<assembly: AssemblyVersionAttribute("1.5.14")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.5.14")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.13")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.5.13")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "SQLProvider.MySql.Runtime"
1414
let [<Literal>] AssemblyProduct = "SQLProvider"
1515
let [<Literal>] AssemblyDescription = "Type providers for MySQL database and MariaDB database access."
16-
let [<Literal>] AssemblyVersion = "1.5.14"
17-
let [<Literal>] AssemblyFileVersion = "1.5.14"
16+
let [<Literal>] AssemblyVersion = "1.5.13"
17+
let [<Literal>] AssemblyFileVersion = "1.5.13"
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
// Auto-Generated by FAKE; do not edit
1+
// Auto-Generated by FAKE; do not edit
22
namespace System
33
open System.Reflection
44

55
[<assembly: AssemblyTitleAttribute("SQLProvider.MySqlConnector.Runtime")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type providers for MySQL database and MariaDB database access via MySqlConnector.")>]
8-
[<assembly: AssemblyVersionAttribute("1.5.14")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.5.14")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.13")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.5.13")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "SQLProvider.MySqlConnector.Runtime"
1414
let [<Literal>] AssemblyProduct = "SQLProvider"
1515
let [<Literal>] AssemblyDescription = "Type providers for MySQL database and MariaDB database access via MySqlConnector."
16-
let [<Literal>] AssemblyVersion = "1.5.14"
17-
let [<Literal>] AssemblyFileVersion = "1.5.14"
16+
let [<Literal>] AssemblyVersion = "1.5.13"
17+
let [<Literal>] AssemblyFileVersion = "1.5.13"

src/SQLProvider.Odbc.Runtime/AssemblyInfo.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
// Auto-Generated by FAKE; do not edit
1+
// Auto-Generated by FAKE; do not edit
22
namespace System
33
open System.Reflection
44

55
[<assembly: AssemblyTitleAttribute("SQLProvider.Odbc.Runtime")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type providers for any ODBC connection database access.")>]
8-
[<assembly: AssemblyVersionAttribute("1.5.14")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.13")>]
99
[<assembly: AssemblyFileVersionAttribute("1.5.12")>]
1010
do ()
1111

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
// Auto-Generated by FAKE; do not edit
1+
// Auto-Generated by FAKE; do not edit
22
namespace System
33
open System.Reflection
44

55
[<assembly: AssemblyTitleAttribute("SQLProvider.Oracle.Runtime")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type providers for Oracle database access.")>]
8-
[<assembly: AssemblyVersionAttribute("1.5.14")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.5.14")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.13")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.5.13")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "SQLProvider.Oracle.Runtime"
1414
let [<Literal>] AssemblyProduct = "SQLProvider"
1515
let [<Literal>] AssemblyDescription = "Type providers for Oracle database access."
16-
let [<Literal>] AssemblyVersion = "1.5.14"
17-
let [<Literal>] AssemblyFileVersion = "1.5.14"
16+
let [<Literal>] AssemblyVersion = "1.5.13"
17+
let [<Literal>] AssemblyFileVersion = "1.5.13"
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
// Auto-Generated by FAKE; do not edit
1+
// Auto-Generated by FAKE; do not edit
22
namespace System
33
open System.Reflection
44

55
[<assembly: AssemblyTitleAttribute("SQLProvider.PostgreSql.DesignTime")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type providers for PostgreSql database access.")>]
8-
[<assembly: AssemblyVersionAttribute("1.5.14")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.5.14")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.13")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.5.13")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "SQLProvider.PostgreSql.DesignTime"
1414
let [<Literal>] AssemblyProduct = "SQLProvider"
1515
let [<Literal>] AssemblyDescription = "Type providers for PostgreSql database access."
16-
let [<Literal>] AssemblyVersion = "1.5.14"
17-
let [<Literal>] AssemblyFileVersion = "1.5.14"
16+
let [<Literal>] AssemblyVersion = "1.5.13"
17+
let [<Literal>] AssemblyFileVersion = "1.5.13"

0 commit comments

Comments
 (0)