diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index d6029d1b..d3194dfe 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,9 +1,13 @@ +#### 2.2.0 April 30, 2025 + +* Using Microsoft.Data.SqlClient +* NET 8.0 compatibility + #### 2.1.3 April 30, 2024 * Issue #440 Toolchain and SDK adjustments, deprecated runtime support for net40 * Contributor: Tuomas Hietanen (https://github.com/Thorium) - #### 2.1.2 May 08, 2022 * Issue #420 fix "TVP Column Ordering is incorrect as of version 2.1.0" diff --git a/TestProjects.sln b/TestProjects.sln index 529d45ff..a6e2aaa3 100644 --- a/TestProjects.sln +++ b/TestProjects.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.28010.2041 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34310.174 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{E35ED000-5A6C-49E1-82CF-55CB8C16C2AB}" ProjectSection(SolutionItems) = preProject diff --git a/build/build.fs b/build/build.fs index 4d6455a6..2e3b5719 100644 --- a/build/build.fs +++ b/build/build.fs @@ -314,7 +314,7 @@ Target.create "NuGet" (fun _ -> ReleaseNotes = releaseNotes Tags = tags OutputPath = "nuget" - ToolPath = nugetPath + //ToolPath = nugetPath AccessKey = Fake.Core.Environment.environVarOrDefault "nugetkey" "" Publish = Fake.Core.Environment.hasEnvironVar "nugetkey" Dependencies = [] }) diff --git a/build/paket.references b/build/paket.references index 51266354..69324d1f 100644 --- a/build/paket.references +++ b/build/paket.references @@ -1,5 +1,4 @@ group Build - Fun.Build Fake.Core.Process Fake.Core.ReleaseNotes @@ -10,10 +9,9 @@ Fake.DotNet.Cli Fake.DotNet.MSBuild Fake.DotNet.NuGet Fake.DotNet.Testing.XUnit2 - Fake.Tools.Git FSharp.Core FSharp.Formatting NuGet.CommandLine System.Data.SqlClient -System.Configuration.ConfigurationManager \ No newline at end of file +System.Configuration.ConfigurationManager diff --git a/docs/content/configuration and Input.fsx b/docs/content/configuration and Input.fsx index e621636a..aaf7df30 100644 --- a/docs/content/configuration and Input.fsx +++ b/docs/content/configuration and Input.fsx @@ -227,7 +227,7 @@ module DB = [] let connStr = @"Data Source=.;Initial Catalog=AdventureWorks2012;Integrated Security=True;TrustServerCertificate=true" - open System.Data.SqlClient + open Microsoft.Data.SqlClient type MyCmd1 = SqlCommandProvider<"SELECT 42", connStr> type MyCmd2 = SqlCommandProvider<"SELECT 42", connStr> @@ -291,7 +291,7 @@ type GetBitCoin = do let cmd = new DeleteBitCoin(connStr) in cmd.Execute(bitCoinCode) |> ignore - let conn = new System.Data.SqlClient.SqlConnection(connStr) + let conn = new Microsoft.Data.SqlClient.SqlConnection(connStr) conn.Open() let tran = conn.BeginTransaction() diff --git a/docs/content/data modification.fsx b/docs/content/data modification.fsx index 8f07f854..ae60d74f 100644 --- a/docs/content/data modification.fsx +++ b/docs/content/data modification.fsx @@ -276,7 +276,7 @@ do currencyRates.Rows.Add newRow //Insert many more rows here - currencyRates.BulkCopy(copyOptions = System.Data.SqlClient.SqlBulkCopyOptions.TableLock) + currencyRates.BulkCopy(copyOptions = Microsoft.Data.SqlClient.SqlBulkCopyOptions.TableLock) (** @@ -285,13 +285,13 @@ Custom update/bulk copy logic Both `Update` and `BulkCopy` operations can be configured via parameters, i.e. connection, transaction, batchSize, etc. That said, default update logic provided by typed DataTable can be insufficient for some advanced scenarios. You don't need to give up on convenience of static typing, however. You can also -customize update behavior by creating your own instance of [SqlDataAdapter](https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldataadapter.aspx) -(or [SqlBulkCopy](https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy.aspx)) and configuring it to your needs. +customize update behavior by creating your own instance of [SqlDataAdapter](https://msdn.microsoft.com/en-us/library/Microsoft.Data.SqlClient.sqldataadapter.aspx) +(or [SqlBulkCopy](https://msdn.microsoft.com/en-us/library/Microsoft.Data.SqlClient.sqlbulkcopy.aspx)) and configuring it to your needs. Pseudocode for custom data adapter: *) -open System.Data.SqlClient +open Microsoft.Data.SqlClient do let currencyRates = new AdventureWorks.Sales.Tables.CurrencyRate() diff --git a/docs/content/faq.fsx b/docs/content/faq.fsx index 4e2bbdb9..6a5bbc0c 100644 --- a/docs/content/faq.fsx +++ b/docs/content/faq.fsx @@ -103,7 +103,7 @@ With a datareader obtained from a custom command you can still reuse the typed r let getDatesQuery = "SELECT GETDATE() AS Now, GETUTCDATE() AS UtcNow" type GetDates = SqlCommandProvider -open System.Data.SqlClient +open Microsoft.Data.SqlClient type SqlDataReader with member this.ToRecords<'T>() = seq { diff --git a/docs/content/output.fsx b/docs/content/output.fsx index 86c4dee8..c0fb1e08 100644 --- a/docs/content/output.fsx +++ b/docs/content/output.fsx @@ -248,7 +248,7 @@ In later case, resulting `SqlDataReader` can be wrapped into something like that *) module SqlDataReader = - open System.Data.SqlClient + open Microsoft.Data.SqlClient let toMaps (reader: SqlDataReader) = seq { use __ = reader diff --git a/docs/content/sqlenumprovider.quickstart.fsx b/docs/content/sqlenumprovider.quickstart.fsx index 2a01d7fa..00f3d196 100644 --- a/docs/content/sqlenumprovider.quickstart.fsx +++ b/docs/content/sqlenumprovider.quickstart.fsx @@ -40,7 +40,7 @@ A typical implementation for overnight orders shipped since Jan 1, 2008 is follo let connStr = @"Data Source=.;Initial Catalog=AdventureWorks2012;Integrated Security=True;TrustServerCertificate=true" open System -open System.Data.SqlClient +open Microsoft.Data.SqlClient let conn = new SqlConnection (connStr) conn.Open() @@ -220,7 +220,7 @@ Miscellaneous ### Any ADO.NET supported database SqlEnumProvider has a static parameter "Provider" which allows to pass ADO.NET provider [invariant name](http://msdn.microsoft.com/en-us/library/h508h681.aspx). -This makes it usable with any ADO.NET supported database. "System.Data.SqlClient" is default value for ADO.NET provider. +This makes it usable with any ADO.NET supported database. "Microsoft.Data.SqlClient" is default value for ADO.NET provider. Invariant names of available ADO.NET providers can be retrieved as follows: *) diff --git a/docs/content/transactions.fsx b/docs/content/transactions.fsx index 64638d96..a160ac7d 100644 --- a/docs/content/transactions.fsx +++ b/docs/content/transactions.fsx @@ -1,5 +1,5 @@ (*** hide ***) -#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll" +#r @"..\..\bin\net462\FSharp.Data.SqlClient.dll" #r "System.Transactions" open FSharp.Data @@ -32,7 +32,7 @@ This conforms to familiar [ADO.NET conventions](https://msdn.microsoft.com/en-us *) open System -open System.Data.SqlClient +open Microsoft.Data.SqlClient type CurrencyCode = SqlEnumProvider<"SELECT Name, CurrencyCode FROM Sales.Currency", connectionString> @@ -224,8 +224,8 @@ provided the connections are not open at the same time (which would result in mu
-**TIP** The value of the [Enlist](https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder.enlist.aspx) -key from [SqlConnection.ConnectionString](https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.connectionstring.aspx) +**TIP** The value of the [Enlist](https://msdn.microsoft.com/en-us/library/Microsoft.Data.SqlClient.sqlconnectionstringbuilder.enlist.aspx) +key from [SqlConnection.ConnectionString](https://msdn.microsoft.com/en-us/library/Microsoft.Data.SqlClient.sqlconnection.connectionstring.aspx) property determines the auto-enlistment behavior of connection instance.

diff --git a/docs/content/whatsnew.fsx b/docs/content/whatsnew.fsx index 0c19b108..9f61503d 100644 --- a/docs/content/whatsnew.fsx +++ b/docs/content/whatsnew.fsx @@ -43,7 +43,7 @@ Any of these parameters can be ommited. #r "System.Transactions" do - use conn = new System.Data.SqlClient.SqlConnection( connectionString) + use conn = new Microsoft.Data.SqlClient.SqlConnection( connectionString) conn.Open() use tran = conn.BeginTransaction() use cmd = diff --git a/global.json b/global.json deleted file mode 100644 index 2fda2ee9..00000000 --- a/global.json +++ /dev/null @@ -1 +0,0 @@ -{ "sdk": { "version": "8.0.100", "rollForward": "latestMinor" } } \ No newline at end of file diff --git a/netfx.props b/netfx.props index cefd35f7..6dac9305 100644 --- a/netfx.props +++ b/netfx.props @@ -36,7 +36,7 @@ - + + - --> - + + + + + + + ..\..\..\packages\samples\Azure.Core\lib\net461\Azure.Core.dll + True + True + + + + + + + ..\..\..\packages\samples\Azure.Core\lib\net472\Azure.Core.dll + True + True + + + + + + + ..\..\..\packages\samples\Azure.Core\lib\net6.0\Azure.Core.dll + True + True + + + + + + + ..\..\..\packages\samples\Azure.Core\lib\net8.0\Azure.Core.dll + True + True + + + + + + + ..\..\..\packages\samples\Azure.Core\lib\netstandard2.0\Azure.Core.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Azure.Identity\lib\net8.0\Azure.Identity.dll + True + True + + + + + + + ..\..\..\packages\samples\Azure.Identity\lib\netstandard2.0\Azure.Identity.dll + True + True + + + + @@ -99,10 +180,10 @@ - + - ..\..\..\bin\net462\FSharp.Data.SqlClient.dll + ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\net461\FSharp.Data.SqlClient.dll True True @@ -111,7 +192,7 @@ - ..\..\..\bin\netstandard2.0\FSharp.Data.SqlClient.dll + ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\netstandard2.0\FSharp.Data.SqlClient.dll True True @@ -119,7 +200,7 @@ - + ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Client\lib\net45\System.Net.Http.Formatting.dll @@ -128,7 +209,16 @@ - + + + + ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Client\lib\netstandard1.3\System.Net.Http.Formatting.dll + True + True + + + + ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Client\lib\netstandard2.0\System.Net.Http.Formatting.dll @@ -139,7 +229,7 @@ - + ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Core\lib\net45\System.Web.Http.dll @@ -150,37 +240,49 @@ - + - - ..\..\..\packages\samples\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll + + ..\..\..\packages\samples\Microsoft.Bcl\lib\portable-net40+win8\System.IO.dll + True + True + + + ..\..\..\packages\samples\Microsoft.Bcl\lib\portable-net40+win8\System.Runtime.dll + True + True + + + ..\..\..\packages\samples\Microsoft.Bcl\lib\portable-net40+win8\System.Threading.Tasks.dll True True - + + + - - ..\..\..\packages\samples\Newtonsoft.Json\lib\net6.0\Newtonsoft.Json.dll + + ..\..\..\packages\samples\Microsoft.Bcl.AsyncInterfaces\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll True True - + - - ..\..\..\packages\samples\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll + + ..\..\..\packages\samples\Microsoft.Bcl.AsyncInterfaces\lib\netstandard2.0\Microsoft.Bcl.AsyncInterfaces.dll True True - + - - ..\..\..\packages\samples\Newtonsoft.Json\lib\netstandard2.0\Newtonsoft.Json.dll + + ..\..\..\packages\samples\Microsoft.Bcl.AsyncInterfaces\lib\netstandard2.1\Microsoft.Bcl.AsyncInterfaces.dll True True @@ -188,19 +290,37 @@ - + - - ..\..\..\packages\samples\Newtonsoft.Json.Bson\lib\netstandard1.3\Newtonsoft.Json.Bson.dll + + ..\..\..\packages\samples\Microsoft.Bcl.Memory\lib\net462\Microsoft.Bcl.Memory.dll True True - + - - ..\..\..\packages\samples\Newtonsoft.Json.Bson\lib\netstandard2.0\Newtonsoft.Json.Bson.dll + + ..\..\..\packages\samples\Microsoft.Bcl.Memory\lib\net8.0\Microsoft.Bcl.Memory.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Bcl.Memory\lib\netstandard2.0\Microsoft.Bcl.Memory.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Bcl.Memory\lib\netstandard2.1\Microsoft.Bcl.Memory.dll True True @@ -208,68 +328,119 @@ - + - - ..\..\..\packages\samples\System.Buffers\lib\netstandard1.1\System.Buffers.dll + + ..\..\..\packages\samples\Microsoft.Bcl.TimeProvider\lib\net462\Microsoft.Bcl.TimeProvider.dll True True - + - - ..\..\..\packages\samples\System.Buffers\lib\netstandard2.0\System.Buffers.dll + + ..\..\..\packages\samples\Microsoft.Bcl.TimeProvider\lib\netstandard2.0\Microsoft.Bcl.TimeProvider.dll True True - + + + - - ..\..\..\packages\samples\System.Buffers\ref\netstandard2.0\System.Buffers.dll + + True + + + + + + + True + + + + + + + ..\..\..\packages\samples\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll False True - - - + - - ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net8.0\System.Configuration.ConfigurationManager.dll + + ..\..\..\packages\samples\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll True True - + - - ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net9.0\System.Configuration.ConfigurationManager.dll + + ..\..\..\packages\samples\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll True True - + - - ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\netstandard2.0\System.Configuration.ConfigurationManager.dll - True + + ..\..\..\packages\samples\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + + + + + True + + + + + + + True + + + + + + + True + + + + + + True + + + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\lib\net462\Microsoft.Data.SqlClient.dll + True + True + + + - - ..\..\..\packages\samples\System.Data.SqlClient\lib\net6.0\System.Data.SqlClient.dll + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\lib\net6.0\Microsoft.Data.SqlClient.dll True True @@ -277,88 +448,91 @@ - - ..\..\..\packages\samples\System.Data.SqlClient\lib\net8.0\System.Data.SqlClient.dll + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\lib\net8.0\Microsoft.Data.SqlClient.dll True True - + - - ..\..\..\packages\samples\System.Data.SqlClient\lib\netstandard2.0\System.Data.SqlClient.dll + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\lib\netstandard2.0\Microsoft.Data.SqlClient.dll True True - - - + - - ..\..\..\packages\samples\System.Diagnostics.EventLog\lib\net8.0\System.Diagnostics.EventLog.dll - True + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\ref\netstandard2.0\Microsoft.Data.SqlClient.dll + False True - + - - ..\..\..\packages\samples\System.Diagnostics.EventLog\lib\net9.0\System.Diagnostics.EventLog.dll + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\lib\netstandard2.1\Microsoft.Data.SqlClient.dll True True + + + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\ref\netstandard2.1\Microsoft.Data.SqlClient.dll + False + True + + + - + - - ..\..\..\packages\samples\System.Memory\lib\netstandard2.0\System.Memory.dll + + ..\..\..\packages\samples\Microsoft.Extensions.DependencyInjection.Abstractions\lib\net462\Microsoft.Extensions.DependencyInjection.Abstractions.dll True True - - - + - - ..\..\..\packages\samples\System.Numerics.Vectors\lib\netstandard2.0\System.Numerics.Vectors.dll + + ..\..\..\packages\samples\Microsoft.Extensions.DependencyInjection.Abstractions\lib\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll True True - + - - ..\..\..\packages\samples\System.Numerics.Vectors\ref\netstandard2.0\System.Numerics.Vectors.dll - False + + ..\..\..\packages\samples\Microsoft.Extensions.DependencyInjection.Abstractions\lib\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll + True True - - - + - - ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\net6.0\System.Runtime.CompilerServices.Unsafe.dll + + ..\..\..\packages\samples\Microsoft.Extensions.DependencyInjection.Abstractions\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll True True - + - - ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + ..\..\..\packages\samples\Microsoft.Extensions.DependencyInjection.Abstractions\lib\netstandard2.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll True True @@ -366,10 +540,19 @@ + + + + ..\..\..\packages\samples\Microsoft.Extensions.Logging.Abstractions\lib\net462\Microsoft.Extensions.Logging.Abstractions.dll + True + True + + + - - ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net8.0\System.Security.Cryptography.ProtectedData.dll + + ..\..\..\packages\samples\Microsoft.Extensions.Logging.Abstractions\lib\net8.0\Microsoft.Extensions.Logging.Abstractions.dll True True @@ -377,21 +560,3182 @@ - - ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net9.0\System.Security.Cryptography.ProtectedData.dll + + ..\..\..\packages\samples\Microsoft.Extensions.Logging.Abstractions\lib\net9.0\Microsoft.Extensions.Logging.Abstractions.dll True True - + - - ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll + + ..\..\..\packages\samples\Microsoft.Extensions.Logging.Abstractions\lib\netstandard2.0\Microsoft.Extensions.Logging.Abstractions.dll + True + True + + + + + + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + + + True + + + True + + + True + + + True + + + True + + + True + + + ..\..\..\packages\samples\Microsoft.Identity.Client\lib\net462\Microsoft.Identity.Client.dll True True + + + + True + + + True + + + True + + + True + + + True + + + True + + + ..\..\..\packages\samples\Microsoft.Identity.Client\lib\net472\Microsoft.Identity.Client.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Identity.Client\lib\net8.0\Microsoft.Identity.Client.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Identity.Client\lib\net8.0-android34.0\Microsoft.Identity.Client.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Identity.Client\lib\net8.0-ios18.0\Microsoft.Identity.Client.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Identity.Client\lib\netstandard2.0\Microsoft.Identity.Client.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.Identity.Client.Extensions.Msal\lib\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Identity.Client.Extensions.Msal\lib\netstandard2.0\Microsoft.Identity.Client.Extensions.Msal.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Abstractions\lib\net462\Microsoft.IdentityModel.Abstractions.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Abstractions\lib\net472\Microsoft.IdentityModel.Abstractions.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Abstractions\lib\net6.0\Microsoft.IdentityModel.Abstractions.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Abstractions\lib\net8.0\Microsoft.IdentityModel.Abstractions.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Abstractions\lib\net9.0\Microsoft.IdentityModel.Abstractions.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Abstractions\lib\netstandard2.0\Microsoft.IdentityModel.Abstractions.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.JsonWebTokens\lib\net462\Microsoft.IdentityModel.JsonWebTokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.JsonWebTokens\lib\net472\Microsoft.IdentityModel.JsonWebTokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.JsonWebTokens\lib\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.JsonWebTokens\lib\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.JsonWebTokens\lib\net9.0\Microsoft.IdentityModel.JsonWebTokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.JsonWebTokens\lib\netstandard2.0\Microsoft.IdentityModel.JsonWebTokens.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Logging\lib\net462\Microsoft.IdentityModel.Logging.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Logging\lib\net472\Microsoft.IdentityModel.Logging.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Logging\lib\net6.0\Microsoft.IdentityModel.Logging.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Logging\lib\net8.0\Microsoft.IdentityModel.Logging.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Logging\lib\net9.0\Microsoft.IdentityModel.Logging.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Logging\lib\netstandard2.0\Microsoft.IdentityModel.Logging.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols\lib\net462\Microsoft.IdentityModel.Protocols.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols\lib\net472\Microsoft.IdentityModel.Protocols.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols\lib\net6.0\Microsoft.IdentityModel.Protocols.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols\lib\net8.0\Microsoft.IdentityModel.Protocols.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols\lib\net9.0\Microsoft.IdentityModel.Protocols.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols.OpenIdConnect\lib\net462\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols.OpenIdConnect\lib\net472\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols.OpenIdConnect\lib\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols.OpenIdConnect\lib\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols.OpenIdConnect\lib\net9.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols.OpenIdConnect\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Tokens\lib\net462\Microsoft.IdentityModel.Tokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Tokens\lib\net472\Microsoft.IdentityModel.Tokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Tokens\lib\net6.0\Microsoft.IdentityModel.Tokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Tokens\lib\net8.0\Microsoft.IdentityModel.Tokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Tokens\lib\net9.0\Microsoft.IdentityModel.Tokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Tokens\lib\netstandard2.0\Microsoft.IdentityModel.Tokens.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\monoandroid\System.Net.Http.Extensions.dll + True + True + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\monoandroid\System.Net.Http.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\monotouch\System.Net.Http.Extensions.dll + True + True + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\monotouch\System.Net.Http.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\portable-net45+win8\System.Net.Http.Extensions.dll + True + True + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\portable-net45+win8\System.Net.Http.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\wpa81\System.Net.Http.Extensions.dll + True + True + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\wpa81\System.Net.Http.Primitives.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.SqlServer.Server\lib\net46\Microsoft.SqlServer.Server.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.SqlServer.Server\lib\netstandard2.0\Microsoft.SqlServer.Server.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.Win32.Registry\lib\netstandard1.3\Microsoft.Win32.Registry.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Win32.Registry\lib\netstandard2.0\Microsoft.Win32.Registry.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Win32.Registry\ref\netstandard2.0\Microsoft.Win32.Registry.dll + False + True + + + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\net20\Newtonsoft.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\net35\Newtonsoft.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\net40\Newtonsoft.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\net6.0\Newtonsoft.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\netstandard1.0\Newtonsoft.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\netstandard2.0\Newtonsoft.Json.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json.Bson\lib\net45\Newtonsoft.Json.Bson.dll + True + True + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json.Bson\lib\netstandard1.3\Newtonsoft.Json.Bson.dll + True + True + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json.Bson\lib\netstandard2.0\Newtonsoft.Json.Bson.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.AppContext\ref\netstandard1.3\System.AppContext.dll + False + True + + + + + + + ..\..\..\packages\samples\System.AppContext\lib\netstandard1.6\System.AppContext.dll + True + True + + + + + + + ..\..\..\packages\samples\System.AppContext\ref\netstandard1.6\System.AppContext.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Buffers\lib\net462\System.Buffers.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Buffers\lib\netstandard2.0\System.Buffers.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.ClientModel\lib\net6.0\System.ClientModel.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ClientModel\lib\net8.0\System.ClientModel.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ClientModel\lib\netstandard2.0\System.ClientModel.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Collections\ref\netstandard1.3\System.Collections.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Collections.Concurrent\ref\netstandard1.1\System.Collections.Concurrent.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Collections.Specialized\ref\netstandard1.3\System.Collections.Specialized.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll + False + True + + + + + + + ..\..\..\packages\samples\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.ComponentModel.EventBasedAsync\lib\netstandard1.3\System.ComponentModel.EventBasedAsync.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ComponentModel.EventBasedAsync\ref\netstandard1.3\System.ComponentModel.EventBasedAsync.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ComponentModel.Primitives\ref\netstandard1.0\System.ComponentModel.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ComponentModel.TypeConverter\ref\netstandard1.0\System.ComponentModel.TypeConverter.dll + False + True + + + + + + + ..\..\..\packages\samples\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ComponentModel.TypeConverter\ref\netstandard1.5\System.ComponentModel.TypeConverter.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net462\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net8.0\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net9.0\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\netstandard2.0\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Console\ref\netstandard1.3\System.Console.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Data.Common\lib\netstandard1.2\System.Data.Common.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.Common\ref\netstandard1.2\System.Data.Common.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\net462\System.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\net6.0\System.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\net8.0\System.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\netstandard2.0\System.Data.SqlClient.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Contracts\lib\netstandard1.0\System.Diagnostics.Contracts.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Contracts\ref\netstandard1.0\System.Diagnostics.Contracts.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Debug\ref\netstandard1.0\System.Diagnostics.Debug.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\net462\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\net8.0\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\net9.0\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\netstandard2.0\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.EventLog\lib\net8.0\System.Diagnostics.EventLog.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.EventLog\lib\net9.0\System.Diagnostics.EventLog.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tracing\ref\netstandard1.1\System.Diagnostics.Tracing.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tracing\ref\netstandard1.2\System.Diagnostics.Tracing.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Dynamic.Runtime\ref\netstandard1.0\System.Dynamic.Runtime.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Formats.Asn1\lib\netstandard2.0\System.Formats.Asn1.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Globalization\ref\netstandard1.3\System.Globalization.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IdentityModel.Tokens.Jwt\lib\net462\System.IdentityModel.Tokens.Jwt.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IdentityModel.Tokens.Jwt\lib\net472\System.IdentityModel.Tokens.Jwt.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IdentityModel.Tokens.Jwt\lib\net6.0\System.IdentityModel.Tokens.Jwt.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IdentityModel.Tokens.Jwt\lib\net8.0\System.IdentityModel.Tokens.Jwt.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IdentityModel.Tokens.Jwt\lib\net9.0\System.IdentityModel.Tokens.Jwt.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IdentityModel.Tokens.Jwt\lib\netstandard2.0\System.IdentityModel.Tokens.Jwt.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.IO\ref\netstandard1.0\System.IO.dll + False + True + + + + + + + ..\..\..\packages\samples\System.IO\ref\netstandard1.3\System.IO.dll + False + True + + + + + + + ..\..\..\packages\samples\System.IO\ref\netstandard1.5\System.IO.dll + False + True + + + + + + + + + True + + + + + + + True + + + + + + + ..\..\..\packages\samples\System.IO.Compression\ref\netstandard1.1\System.IO.Compression.dll + False + True + + + + + + + ..\..\..\packages\samples\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll + False + True + + + + + + + True + + + + + + + True + + + + + + + + + ..\..\..\packages\samples\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.AccessControl\lib\net461\System.IO.FileSystem.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.AccessControl\lib\netstandard1.3\System.IO.FileSystem.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.AccessControl\lib\netstandard2.0\System.IO.FileSystem.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.AccessControl\ref\netstandard2.0\System.IO.FileSystem.AccessControl.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IO.Pipelines\lib\net462\System.IO.Pipelines.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.Pipelines\lib\netstandard2.0\System.IO.Pipelines.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Linq\lib\netstandard1.6\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Linq\ref\netstandard1.6\System.Linq.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Memory\lib\net462\System.Memory.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Memory\lib\netstandard2.0\System.Memory.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Memory.Data\lib\net462\System.Memory.Data.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Memory.Data\lib\net8.0\System.Memory.Data.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Memory.Data\lib\net9.0\System.Memory.Data.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Memory.Data\lib\netstandard2.0\System.Memory.Data.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Net.Http\ref\netstandard1.1\System.Net.Http.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Net.Primitives\ref\netstandard1.0\System.Net.Primitives.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Net.Primitives\ref\netstandard1.1\System.Net.Primitives.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Numerics.Vectors\lib\net46\System.Numerics.Vectors.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Numerics.Vectors\lib\netstandard2.0\System.Numerics.Vectors.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Numerics.Vectors\ref\netstandard2.0\System.Numerics.Vectors.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + + + + ..\..\..\packages\samples\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Private.DataContractSerialization\lib\netstandard1.3\System.Private.DataContractSerialization.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection\ref\netstandard1.5\System.Reflection.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime\ref\netstandard1.0\System.Runtime.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime\ref\netstandard1.2\System.Runtime.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime\ref\netstandard1.3\System.Runtime.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime\ref\netstandard1.5\System.Runtime.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Caching\lib\net8.0\System.Runtime.Caching.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Caching\lib\net9.0\System.Runtime.Caching.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Caching\lib\netstandard2.0\System.Runtime.Caching.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\net462\System.Runtime.CompilerServices.Unsafe.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\net6.0\System.Runtime.CompilerServices.Unsafe.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netstandard1.1\System.Runtime.InteropServices.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netstandard1.2\System.Runtime.InteropServices.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices.RuntimeInformation\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices.RuntimeInformation\lib\wpa81\System.Runtime.InteropServices.RuntimeInformation.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Loader\lib\netstandard1.5\System.Runtime.Loader.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Loader\ref\netstandard1.5\System.Runtime.Loader.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Json\ref\netstandard1.0\System.Runtime.Serialization.Json.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Json\lib\netstandard1.3\System.Runtime.Serialization.Json.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Primitives\ref\netstandard1.0\System.Runtime.Serialization.Primitives.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Primitives\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Xml\lib\netstandard1.3\System.Runtime.Serialization.Xml.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Xml\ref\netstandard1.3\System.Runtime.Serialization.Xml.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.AccessControl\lib\net461\System.Security.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.AccessControl\lib\net6.0\System.Security.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.AccessControl\lib\netstandard2.0\System.Security.AccessControl.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netcoreapp2.1\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netcoreapp2.1\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netcoreapp3.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netcoreapp3.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netstandard2.1\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netstandard2.1\System.Security.Cryptography.Cng.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll + False + True + + + + + + + + + True + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net462\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net8.0\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net9.0\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.X509Certificates\ref\netstandard1.3\System.Security.Cryptography.X509Certificates.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\lib\net461\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\ref\netcoreapp3.0\System.Security.Principal.Windows.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\lib\netstandard1.3\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encoding.CodePages\lib\netstandard2.0\System.Text.Encoding.CodePages.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encodings.Web\lib\net462\System.Text.Encodings.Web.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Text.Encodings.Web\lib\netstandard2.0\System.Text.Encodings.Web.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Json\lib\net462\System.Text.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Text.Json\lib\net8.0\System.Text.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Text.Json\lib\netstandard2.0\System.Text.Json.dll + True + True + + + + + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\ref\netstandard1.0\System.Text.RegularExpressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Threading\lib\netstandard1.3\System.Threading.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Threading\ref\netstandard1.3\System.Threading.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Threading.Tasks.Extensions\lib\net462\System.Threading.Tasks.Extensions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.ValueTuple\lib\net462\System.ValueTuple.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ValueTuple\lib\net47\System.ValueTuple.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Xml.ReaderWriter\ref\netstandard1.0\System.Xml.ReaderWriter.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Xml.XDocument\ref\netstandard1.0\System.Xml.XDocument.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Xml.XmlSerializer\lib\netstandard1.3\System.Xml.XmlSerializer.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Xml.XmlSerializer\ref\netstandard1.3\System.Xml.XmlSerializer.dll + False + True + + + + \ No newline at end of file diff --git a/src/SqlClient.Samples/WebApi.Controllers/paket.references b/src/SqlClient.Samples/WebApi.Controllers/paket.references index 2617315c..6e6ed9b6 100644 --- a/src/SqlClient.Samples/WebApi.Controllers/paket.references +++ b/src/SqlClient.Samples/WebApi.Controllers/paket.references @@ -1,5 +1,6 @@ group Samples FSharp.Core + Microsoft.Data.SqlClient FSharp.Data.SqlClient Microsoft.AspNet.WebApi.Client Microsoft.AspNet.WebApi.Core diff --git a/src/SqlClient.Samples/WebApi/WebApi.csproj b/src/SqlClient.Samples/WebApi/WebApi.csproj index c6923d47..c4622ef2 100644 --- a/src/SqlClient.Samples/WebApi/WebApi.csproj +++ b/src/SqlClient.Samples/WebApi/WebApi.csproj @@ -135,10 +135,10 @@ - + - ..\..\..\bin\net462\FSharp.Data.SqlClient.dll + ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\net461\FSharp.Data.SqlClient.dll True True @@ -147,7 +147,7 @@ - ..\..\..\bin\netstandard2.0\FSharp.Data.SqlClient.dll + ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\netstandard2.0\FSharp.Data.SqlClient.dll True True @@ -155,7 +155,7 @@ - + ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Client\lib\net45\System.Net.Http.Formatting.dll @@ -164,7 +164,16 @@ - + + + + ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Client\lib\netstandard1.3\System.Net.Http.Formatting.dll + True + True + + + + ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Client\lib\netstandard2.0\System.Net.Http.Formatting.dll @@ -175,7 +184,7 @@ - + ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Core\lib\net45\System.Web.Http.dll @@ -186,7 +195,7 @@ - + ..\..\..\packages\samples\Microsoft.AspNet.WebApi.WebHost\lib\net45\System.Web.Http.WebHost.dll @@ -197,7 +206,204 @@ - + + + + ..\..\..\packages\samples\Microsoft.Bcl\lib\portable-net40+win8\System.IO.dll + True + True + + + ..\..\..\packages\samples\Microsoft.Bcl\lib\portable-net40+win8\System.Runtime.dll + True + True + + + ..\..\..\packages\samples\Microsoft.Bcl\lib\portable-net40+win8\System.Threading.Tasks.dll + True + True + + + + + + + + + True + + + + + + + True + + + + + + + ..\..\..\packages\samples\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll + False + True + + + + + + + ..\..\..\packages\samples\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\monoandroid\System.Net.Http.Extensions.dll + True + True + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\monoandroid\System.Net.Http.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\monotouch\System.Net.Http.Extensions.dll + True + True + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\monotouch\System.Net.Http.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\portable-net45+win8\System.Net.Http.Extensions.dll + True + True + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\portable-net45+win8\System.Net.Http.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\wpa81\System.Net.Http.Extensions.dll + True + True + + + ..\..\..\packages\samples\Microsoft.Net.Http\lib\wpa81\System.Net.Http.Primitives.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\net20\Newtonsoft.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\net35\Newtonsoft.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\net40\Newtonsoft.Json.dll + True + True + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -215,7 +421,16 @@ - + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\netstandard1.0\Newtonsoft.Json.dll + True + True + + + + ..\..\..\packages\samples\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll @@ -235,7 +450,16 @@ - + + + + ..\..\..\packages\samples\Newtonsoft.Json.Bson\lib\net45\Newtonsoft.Json.Bson.dll + True + True + + + + ..\..\..\packages\samples\Newtonsoft.Json.Bson\lib\netstandard1.3\Newtonsoft.Json.Bson.dll @@ -255,31 +479,28 @@ - + - - True - - - ..\..\..\packages\samples\System.Buffers\lib\netstandard1.1\System.Buffers.dll - True + + ..\..\..\packages\samples\System.AppContext\ref\netstandard1.3\System.AppContext.dll + False True - + - - ..\..\..\packages\samples\System.Buffers\lib\netstandard2.0\System.Buffers.dll + + ..\..\..\packages\samples\System.AppContext\lib\netstandard1.6\System.AppContext.dll True True - + - - ..\..\..\packages\samples\System.Buffers\ref\netstandard2.0\System.Buffers.dll + + ..\..\..\packages\samples\System.AppContext\ref\netstandard1.6\System.AppContext.dll False True @@ -287,88 +508,128 @@ - + - - ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net8.0\System.Configuration.ConfigurationManager.dll + + ..\..\..\packages\samples\System.Buffers\lib\net462\System.Buffers.dll True True - + - - ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net9.0\System.Configuration.ConfigurationManager.dll + + ..\..\..\packages\samples\System.Buffers\lib\netstandard2.0\System.Buffers.dll True True - + + + - - ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\netstandard2.0\System.Configuration.ConfigurationManager.dll - True + + ..\..\..\packages\samples\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Collections\ref\netstandard1.3\System.Collections.dll + False True - + - - ..\..\..\packages\samples\System.Data.SqlClient\lib\net6.0\System.Data.SqlClient.dll - True + + ..\..\..\packages\samples\System.Collections.Concurrent\ref\netstandard1.1\System.Collections.Concurrent.dll + False True - + - - ..\..\..\packages\samples\System.Data.SqlClient\lib\net8.0\System.Data.SqlClient.dll + + ..\..\..\packages\samples\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll True True - + - - ..\..\..\packages\samples\System.Data.SqlClient\lib\netstandard2.0\System.Data.SqlClient.dll - True + + ..\..\..\packages\samples\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll + False True - + - - ..\..\..\packages\samples\System.Diagnostics.EventLog\lib\net8.0\System.Diagnostics.EventLog.dll + + ..\..\..\packages\samples\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll True True - + - - ..\..\..\packages\samples\System.Diagnostics.EventLog\lib\net9.0\System.Diagnostics.EventLog.dll + + ..\..\..\packages\samples\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll True True + + + + ..\..\..\packages\samples\System.Collections.Specialized\ref\netstandard1.3\System.Collections.Specialized.dll + False + True + + + - + - - ..\..\..\packages\samples\System.Memory\lib\netstandard2.0\System.Memory.dll + + ..\..\..\packages\samples\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll + False + True + + + + + + + ..\..\..\packages\samples\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll True True @@ -376,19 +637,19 @@ - + - - ..\..\..\packages\samples\System.Numerics.Vectors\lib\netstandard2.0\System.Numerics.Vectors.dll + + ..\..\..\packages\samples\System.ComponentModel.EventBasedAsync\lib\netstandard1.3\System.ComponentModel.EventBasedAsync.dll True True - + - - ..\..\..\packages\samples\System.Numerics.Vectors\ref\netstandard2.0\System.Numerics.Vectors.dll + + ..\..\..\packages\samples\System.ComponentModel.EventBasedAsync\ref\netstandard1.3\System.ComponentModel.EventBasedAsync.dll False True @@ -396,45 +657,1442 @@ - + - - ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\net6.0\System.Runtime.CompilerServices.Unsafe.dll + + ..\..\..\packages\samples\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll True True - + - - ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll - True + + ..\..\..\packages\samples\System.ComponentModel.Primitives\ref\netstandard1.0\System.ComponentModel.Primitives.dll + False True - + - - ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net8.0\System.Security.Cryptography.ProtectedData.dll + + ..\..\..\packages\samples\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll True True - + - - ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net9.0\System.Security.Cryptography.ProtectedData.dll - True + + ..\..\..\packages\samples\System.ComponentModel.TypeConverter\ref\netstandard1.0\System.ComponentModel.TypeConverter.dll + False True - + + + + ..\..\..\packages\samples\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ComponentModel.TypeConverter\ref\netstandard1.5\System.ComponentModel.TypeConverter.dll + False + True + + + + + + + + + True + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net462\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net8.0\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net9.0\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\netstandard2.0\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Console\ref\netstandard1.3\System.Console.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Data.Common\lib\netstandard1.2\System.Data.Common.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.Common\ref\netstandard1.2\System.Data.Common.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\net462\System.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\net6.0\System.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\net8.0\System.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\netstandard2.0\System.Data.SqlClient.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Contracts\lib\netstandard1.0\System.Diagnostics.Contracts.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Contracts\ref\netstandard1.0\System.Diagnostics.Contracts.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Debug\ref\netstandard1.0\System.Diagnostics.Debug.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\net462\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\net8.0\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\net9.0\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\netstandard2.0\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.EventLog\lib\net8.0\System.Diagnostics.EventLog.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.EventLog\lib\net9.0\System.Diagnostics.EventLog.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tracing\ref\netstandard1.1\System.Diagnostics.Tracing.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tracing\ref\netstandard1.2\System.Diagnostics.Tracing.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Dynamic.Runtime\ref\netstandard1.0\System.Dynamic.Runtime.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Formats.Asn1\lib\netstandard2.0\System.Formats.Asn1.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Globalization\ref\netstandard1.3\System.Globalization.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IO\ref\netstandard1.0\System.IO.dll + False + True + + + + + + + ..\..\..\packages\samples\System.IO\ref\netstandard1.3\System.IO.dll + False + True + + + + + + + ..\..\..\packages\samples\System.IO\ref\netstandard1.5\System.IO.dll + False + True + + + + + + + + + True + + + + + + + True + + + + + + + ..\..\..\packages\samples\System.IO.Compression\ref\netstandard1.1\System.IO.Compression.dll + False + True + + + + + + + ..\..\..\packages\samples\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll + False + True + + + + + + + True + + + + + + + True + + + + + + + + + ..\..\..\packages\samples\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Linq\lib\netstandard1.6\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Linq\ref\netstandard1.6\System.Linq.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Memory\lib\net462\System.Memory.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Memory\lib\netstandard2.0\System.Memory.dll + True + True + + + + + + + + + True + + + True + + + + + + + ..\..\..\packages\samples\System.Net.Http\ref\netstandard1.1\System.Net.Http.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Net.Primitives\ref\netstandard1.0\System.Net.Primitives.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Net.Primitives\ref\netstandard1.1\System.Net.Primitives.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll + False + True + + + + + + + + + True + + + + + + + + + True + + + ..\..\..\packages\samples\System.Numerics.Vectors\lib\net46\System.Numerics.Vectors.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Numerics.Vectors\lib\netstandard2.0\System.Numerics.Vectors.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Numerics.Vectors\ref\netstandard2.0\System.Numerics.Vectors.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + + + + ..\..\..\packages\samples\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Private.DataContractSerialization\lib\netstandard1.3\System.Private.DataContractSerialization.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection\ref\netstandard1.5\System.Reflection.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime\ref\netstandard1.0\System.Runtime.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime\ref\netstandard1.2\System.Runtime.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime\ref\netstandard1.3\System.Runtime.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime\ref\netstandard1.5\System.Runtime.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\net462\System.Runtime.CompilerServices.Unsafe.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\net6.0\System.Runtime.CompilerServices.Unsafe.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netstandard1.1\System.Runtime.InteropServices.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netstandard1.2\System.Runtime.InteropServices.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices.RuntimeInformation\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices.RuntimeInformation\lib\wpa81\System.Runtime.InteropServices.RuntimeInformation.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Json\ref\netstandard1.0\System.Runtime.Serialization.Json.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Json\lib\netstandard1.3\System.Runtime.Serialization.Json.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Primitives\ref\netstandard1.0\System.Runtime.Serialization.Primitives.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Primitives\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Xml\lib\netstandard1.3\System.Runtime.Serialization.Xml.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Serialization.Xml\ref\netstandard1.3\System.Runtime.Serialization.Xml.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netcoreapp2.1\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netcoreapp2.1\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netcoreapp3.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netcoreapp3.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netstandard2.1\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netstandard2.1\System.Security.Cryptography.Cng.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll + False + True + + + + + + + + + True + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net462\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net8.0\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net9.0\System.Security.Cryptography.ProtectedData.dll + True + True + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll @@ -444,4 +2102,289 @@ + + + + + ..\..\..\packages\samples\System.Security.Cryptography.X509Certificates\ref\netstandard1.3\System.Security.Cryptography.X509Certificates.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\ref\netstandard1.0\System.Text.RegularExpressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Threading\lib\netstandard1.3\System.Threading.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Threading\ref\netstandard1.3\System.Threading.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Threading.Tasks.Extensions\lib\net462\System.Threading.Tasks.Extensions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Xml.ReaderWriter\ref\netstandard1.0\System.Xml.ReaderWriter.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Xml.XDocument\ref\netstandard1.0\System.Xml.XDocument.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Xml.XmlSerializer\lib\netstandard1.3\System.Xml.XmlSerializer.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Xml.XmlSerializer\ref\netstandard1.3\System.Xml.XmlSerializer.dll + False + True + + + + \ No newline at end of file diff --git a/src/SqlClient.Samples/WebApi/web.config b/src/SqlClient.Samples/WebApi/web.config index 6a05fd72..c7056b2a 100644 --- a/src/SqlClient.Samples/WebApi/web.config +++ b/src/SqlClient.Samples/WebApi/web.config @@ -25,14 +25,124 @@ + + True + + + + + True + + + + + True + + + True + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + True + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + \ No newline at end of file diff --git a/src/SqlClient.Samples/WpfDataBinding/App.config b/src/SqlClient.Samples/WpfDataBinding/App.config index bbdeeccc..19961326 100644 --- a/src/SqlClient.Samples/WpfDataBinding/App.config +++ b/src/SqlClient.Samples/WpfDataBinding/App.config @@ -8,9 +8,109 @@ + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + True + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + + + True + + + \ No newline at end of file diff --git a/src/SqlClient.Samples/WpfDataBinding/Program.fs b/src/SqlClient.Samples/WpfDataBinding/Program.fs index a0079e1c..325eb904 100644 --- a/src/SqlClient.Samples/WpfDataBinding/Program.fs +++ b/src/SqlClient.Samples/WpfDataBinding/Program.fs @@ -6,7 +6,7 @@ open System open System.Windows open System.Windows.Controls -open System.Data.SqlClient +open Microsoft.Data.SqlClient open FSharp.Data.SqlClient diff --git a/src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj b/src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj index 2a03f1a9..84d16d75 100644 --- a/src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj +++ b/src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj @@ -55,6 +55,13 @@ + + + + <__paket__System_ValueTuple_targets>net471\System.ValueTuple + + + @@ -63,6 +70,13 @@ + + + + <__paket__Microsoft_Data_SqlClient_SNI_targets>net462\Microsoft.Data.SqlClient.SNI + + + MSBuild:Compile @@ -103,6 +117,76 @@ --> + + + + + ..\..\..\packages\samples\Azure.Core\lib\net461\Azure.Core.dll + True + True + + + + + + + True + + + ..\..\..\packages\samples\Azure.Core\lib\net472\Azure.Core.dll + True + True + + + + + + + ..\..\..\packages\samples\Azure.Core\lib\net6.0\Azure.Core.dll + True + True + + + + + + + ..\..\..\packages\samples\Azure.Core\lib\net8.0\Azure.Core.dll + True + True + + + + + + + ..\..\..\packages\samples\Azure.Core\lib\netstandard2.0\Azure.Core.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Azure.Identity\lib\net8.0\Azure.Identity.dll + True + True + + + + + + + ..\..\..\packages\samples\Azure.Identity\lib\netstandard2.0\Azure.Identity.dll + True + True + + + + @@ -124,10 +208,10 @@ - + - ..\..\..\bin\net462\FSharp.Data.SqlClient.dll + ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\net461\FSharp.Data.SqlClient.dll True True @@ -136,7 +220,7 @@ - ..\..\..\bin\netstandard2.0\FSharp.Data.SqlClient.dll + ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\netstandard2.0\FSharp.Data.SqlClient.dll True True @@ -144,10 +228,28 @@ - + - - ..\..\..\packages\samples\Microsoft.SqlServer.Server\lib\netstandard2.0\Microsoft.SqlServer.Server.dll + + ..\..\..\packages\samples\Microsoft.Bcl.AsyncInterfaces\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Bcl.AsyncInterfaces\lib\netstandard2.0\Microsoft.Bcl.AsyncInterfaces.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Bcl.AsyncInterfaces\lib\netstandard2.1\Microsoft.Bcl.AsyncInterfaces.dll True True @@ -157,17 +259,35 @@ - - ..\..\..\packages\samples\Microsoft.SqlServer.Types\lib\net462\Microsoft.SqlServer.Types.dll + + ..\..\..\packages\samples\Microsoft.Bcl.Memory\lib\net462\Microsoft.Bcl.Memory.dll True True - + - - ..\..\..\packages\samples\Microsoft.SqlServer.Types\lib\netstandard2.1\Microsoft.SqlServer.Types.dll + + ..\..\..\packages\samples\Microsoft.Bcl.Memory\lib\net8.0\Microsoft.Bcl.Memory.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Bcl.Memory\lib\netstandard2.0\Microsoft.Bcl.Memory.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Bcl.Memory\lib\netstandard2.1\Microsoft.Bcl.Memory.dll True True @@ -175,68 +295,119 @@ - + - - ..\..\..\packages\samples\System.Buffers\lib\netstandard1.1\System.Buffers.dll + + ..\..\..\packages\samples\Microsoft.Bcl.TimeProvider\lib\net462\Microsoft.Bcl.TimeProvider.dll True True - + - - ..\..\..\packages\samples\System.Buffers\lib\netstandard2.0\System.Buffers.dll + + ..\..\..\packages\samples\Microsoft.Bcl.TimeProvider\lib\netstandard2.0\Microsoft.Bcl.TimeProvider.dll True True - + + + - - ..\..\..\packages\samples\System.Buffers\ref\netstandard2.0\System.Buffers.dll + + True + + + + + + + True + + + + + + + ..\..\..\packages\samples\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll False True - - - + - - ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net8.0\System.Configuration.ConfigurationManager.dll + + ..\..\..\packages\samples\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll True True - + - - ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net9.0\System.Configuration.ConfigurationManager.dll + + ..\..\..\packages\samples\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll True True - + - - ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\netstandard2.0\System.Configuration.ConfigurationManager.dll - True + + ..\..\..\packages\samples\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + + + + + True + + + + + + + True + + + + + + + True + + + + + + True + + + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\lib\net462\Microsoft.Data.SqlClient.dll + True + True + + + - - ..\..\..\packages\samples\System.Data.SqlClient\lib\net6.0\System.Data.SqlClient.dll + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\lib\net6.0\Microsoft.Data.SqlClient.dll True True @@ -244,28 +415,64 @@ - - ..\..\..\packages\samples\System.Data.SqlClient\lib\net8.0\System.Data.SqlClient.dll + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\lib\net8.0\Microsoft.Data.SqlClient.dll True True - + - - ..\..\..\packages\samples\System.Data.SqlClient\lib\netstandard2.0\System.Data.SqlClient.dll + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\lib\netstandard2.0\Microsoft.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\ref\netstandard2.0\Microsoft.Data.SqlClient.dll + False + True + + + + + + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\lib\netstandard2.1\Microsoft.Data.SqlClient.dll True True + + + + ..\..\..\packages\samples\Microsoft.Data.SqlClient\ref\netstandard2.1\Microsoft.Data.SqlClient.dll + False + True + + + + + + + ..\..\..\packages\samples\Microsoft.Extensions.DependencyInjection.Abstractions\lib\net462\Microsoft.Extensions.DependencyInjection.Abstractions.dll + True + True + + + - - ..\..\..\packages\samples\System.Diagnostics.EventLog\lib\net8.0\System.Diagnostics.EventLog.dll + + ..\..\..\packages\samples\Microsoft.Extensions.DependencyInjection.Abstractions\lib\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll True True @@ -273,19 +480,26 @@ - - ..\..\..\packages\samples\System.Diagnostics.EventLog\lib\net9.0\System.Diagnostics.EventLog.dll + + ..\..\..\packages\samples\Microsoft.Extensions.DependencyInjection.Abstractions\lib\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll True True - - - + - - ..\..\..\packages\samples\System.Memory\lib\netstandard2.0\System.Memory.dll + + ..\..\..\packages\samples\Microsoft.Extensions.DependencyInjection.Abstractions\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Extensions.DependencyInjection.Abstractions\lib\netstandard2.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll True True @@ -293,72 +507,2809 @@ - + - - ..\..\..\packages\samples\System.Numerics.Vectors\lib\netstandard2.0\System.Numerics.Vectors.dll + + ..\..\..\packages\samples\Microsoft.Extensions.Logging.Abstractions\lib\net462\Microsoft.Extensions.Logging.Abstractions.dll True True - + - - ..\..\..\packages\samples\System.Numerics.Vectors\ref\netstandard2.0\System.Numerics.Vectors.dll - False + + ..\..\..\packages\samples\Microsoft.Extensions.Logging.Abstractions\lib\net8.0\Microsoft.Extensions.Logging.Abstractions.dll + True True - - - + - - ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\net6.0\System.Runtime.CompilerServices.Unsafe.dll + + ..\..\..\packages\samples\Microsoft.Extensions.Logging.Abstractions\lib\net9.0\Microsoft.Extensions.Logging.Abstractions.dll True True - + - - ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + ..\..\..\packages\samples\Microsoft.Extensions.Logging.Abstractions\lib\netstandard2.0\Microsoft.Extensions.Logging.Abstractions.dll True True + + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + - + - - ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net8.0\System.Security.Cryptography.ProtectedData.dll - True + True - + + + - - ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net9.0\System.Security.Cryptography.ProtectedData.dll + + True + + + True + + + True + + + True + + + True + + + True + + + ..\..\..\packages\samples\Microsoft.Identity.Client\lib\net462\Microsoft.Identity.Client.dll True True - + - - ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll - True + + True + + + True + + + True + + + True + + + True + + + True + + + ..\..\..\packages\samples\Microsoft.Identity.Client\lib\net472\Microsoft.Identity.Client.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Identity.Client\lib\net8.0\Microsoft.Identity.Client.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Identity.Client\lib\net8.0-android34.0\Microsoft.Identity.Client.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Identity.Client\lib\net8.0-ios18.0\Microsoft.Identity.Client.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Identity.Client\lib\netstandard2.0\Microsoft.Identity.Client.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.Identity.Client.Extensions.Msal\lib\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Identity.Client.Extensions.Msal\lib\netstandard2.0\Microsoft.Identity.Client.Extensions.Msal.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Abstractions\lib\net462\Microsoft.IdentityModel.Abstractions.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Abstractions\lib\net472\Microsoft.IdentityModel.Abstractions.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Abstractions\lib\net6.0\Microsoft.IdentityModel.Abstractions.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Abstractions\lib\net8.0\Microsoft.IdentityModel.Abstractions.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Abstractions\lib\net9.0\Microsoft.IdentityModel.Abstractions.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Abstractions\lib\netstandard2.0\Microsoft.IdentityModel.Abstractions.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.JsonWebTokens\lib\net462\Microsoft.IdentityModel.JsonWebTokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.JsonWebTokens\lib\net472\Microsoft.IdentityModel.JsonWebTokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.JsonWebTokens\lib\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.JsonWebTokens\lib\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.JsonWebTokens\lib\net9.0\Microsoft.IdentityModel.JsonWebTokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.JsonWebTokens\lib\netstandard2.0\Microsoft.IdentityModel.JsonWebTokens.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Logging\lib\net462\Microsoft.IdentityModel.Logging.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Logging\lib\net472\Microsoft.IdentityModel.Logging.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Logging\lib\net6.0\Microsoft.IdentityModel.Logging.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Logging\lib\net8.0\Microsoft.IdentityModel.Logging.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Logging\lib\net9.0\Microsoft.IdentityModel.Logging.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Logging\lib\netstandard2.0\Microsoft.IdentityModel.Logging.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols\lib\net462\Microsoft.IdentityModel.Protocols.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols\lib\net472\Microsoft.IdentityModel.Protocols.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols\lib\net6.0\Microsoft.IdentityModel.Protocols.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols\lib\net8.0\Microsoft.IdentityModel.Protocols.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols\lib\net9.0\Microsoft.IdentityModel.Protocols.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols.OpenIdConnect\lib\net462\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols.OpenIdConnect\lib\net472\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols.OpenIdConnect\lib\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols.OpenIdConnect\lib\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols.OpenIdConnect\lib\net9.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Protocols.OpenIdConnect\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Tokens\lib\net462\Microsoft.IdentityModel.Tokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Tokens\lib\net472\Microsoft.IdentityModel.Tokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Tokens\lib\net6.0\Microsoft.IdentityModel.Tokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Tokens\lib\net8.0\Microsoft.IdentityModel.Tokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Tokens\lib\net9.0\Microsoft.IdentityModel.Tokens.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.IdentityModel.Tokens\lib\netstandard2.0\Microsoft.IdentityModel.Tokens.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.SqlServer.Server\lib\net46\Microsoft.SqlServer.Server.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.SqlServer.Server\lib\netstandard2.0\Microsoft.SqlServer.Server.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.SqlServer.Types\lib\net462\Microsoft.SqlServer.Types.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.SqlServer.Types\lib\netstandard2.1\Microsoft.SqlServer.Types.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.Win32.Registry\lib\netstandard1.3\Microsoft.Win32.Registry.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Win32.Registry\lib\netstandard2.0\Microsoft.Win32.Registry.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Win32.Registry\ref\netstandard2.0\Microsoft.Win32.Registry.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.AppContext\ref\netstandard1.3\System.AppContext.dll + False + True + + + + + + + ..\..\..\packages\samples\System.AppContext\lib\netstandard1.6\System.AppContext.dll + True + True + + + + + + + ..\..\..\packages\samples\System.AppContext\ref\netstandard1.6\System.AppContext.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Buffers\lib\net462\System.Buffers.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Buffers\lib\netstandard2.0\System.Buffers.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.ClientModel\lib\net6.0\System.ClientModel.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ClientModel\lib\net8.0\System.ClientModel.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ClientModel\lib\netstandard2.0\System.ClientModel.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Collections\ref\netstandard1.3\System.Collections.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Collections.Concurrent\ref\netstandard1.1\System.Collections.Concurrent.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net462\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net8.0\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\net9.0\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\netstandard2.0\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Console\ref\netstandard1.3\System.Console.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\net462\System.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\net6.0\System.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\net8.0\System.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\netstandard2.0\System.Data.SqlClient.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Debug\ref\netstandard1.0\System.Diagnostics.Debug.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\net462\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\net8.0\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\net9.0\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\netstandard2.0\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.EventLog\lib\net8.0\System.Diagnostics.EventLog.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.EventLog\lib\net9.0\System.Diagnostics.EventLog.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tracing\ref\netstandard1.1\System.Diagnostics.Tracing.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tracing\ref\netstandard1.2\System.Diagnostics.Tracing.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Dynamic.Runtime\ref\netstandard1.0\System.Dynamic.Runtime.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Formats.Asn1\lib\netstandard2.0\System.Formats.Asn1.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Globalization\ref\netstandard1.3\System.Globalization.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IdentityModel.Tokens.Jwt\lib\net462\System.IdentityModel.Tokens.Jwt.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IdentityModel.Tokens.Jwt\lib\net472\System.IdentityModel.Tokens.Jwt.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IdentityModel.Tokens.Jwt\lib\net6.0\System.IdentityModel.Tokens.Jwt.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IdentityModel.Tokens.Jwt\lib\net8.0\System.IdentityModel.Tokens.Jwt.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IdentityModel.Tokens.Jwt\lib\net9.0\System.IdentityModel.Tokens.Jwt.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IdentityModel.Tokens.Jwt\lib\netstandard2.0\System.IdentityModel.Tokens.Jwt.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.IO\ref\netstandard1.0\System.IO.dll + False + True + + + + + + + ..\..\..\packages\samples\System.IO\ref\netstandard1.3\System.IO.dll + False + True + + + + + + + ..\..\..\packages\samples\System.IO\ref\netstandard1.5\System.IO.dll + False + True + + + + + + + + + True + + + + + + + True + + + + + + + ..\..\..\packages\samples\System.IO.Compression\ref\netstandard1.1\System.IO.Compression.dll + False + True + + + + + + + ..\..\..\packages\samples\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll + False + True + + + + + + + True + + + + + + + True + + + + + + + + + ..\..\..\packages\samples\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.AccessControl\lib\net461\System.IO.FileSystem.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.AccessControl\lib\netstandard1.3\System.IO.FileSystem.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.AccessControl\lib\netstandard2.0\System.IO.FileSystem.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.AccessControl\ref\netstandard2.0\System.IO.FileSystem.AccessControl.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.IO.Pipelines\lib\net462\System.IO.Pipelines.dll + True + True + + + + + + + ..\..\..\packages\samples\System.IO.Pipelines\lib\netstandard2.0\System.IO.Pipelines.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Linq\lib\netstandard1.6\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Linq\ref\netstandard1.6\System.Linq.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Memory\lib\net462\System.Memory.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Memory\lib\netstandard2.0\System.Memory.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Memory.Data\lib\net462\System.Memory.Data.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Memory.Data\lib\net8.0\System.Memory.Data.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Memory.Data\lib\net9.0\System.Memory.Data.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Memory.Data\lib\netstandard2.0\System.Memory.Data.dll + True + True + + + + + + + + + True + + + + + + + True + + + + + + + ..\..\..\packages\samples\System.Net.Http\lib\net46\System.Net.Http.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Net.Http\ref\netstandard1.1\System.Net.Http.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll + False + True + + + + + + + True + + + + + + + True + + + + + + + + + ..\..\..\packages\samples\System.Net.Primitives\ref\netstandard1.0\System.Net.Primitives.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Net.Primitives\ref\netstandard1.1\System.Net.Primitives.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Numerics.Vectors\lib\net46\System.Numerics.Vectors.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Numerics.Vectors\lib\netstandard2.0\System.Numerics.Vectors.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Numerics.Vectors\ref\netstandard2.0\System.Numerics.Vectors.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + + + + ..\..\..\packages\samples\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection\ref\netstandard1.5\System.Reflection.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime\ref\netstandard1.0\System.Runtime.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime\ref\netstandard1.2\System.Runtime.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime\ref\netstandard1.3\System.Runtime.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime\ref\netstandard1.5\System.Runtime.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Caching\lib\net8.0\System.Runtime.Caching.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Caching\lib\net9.0\System.Runtime.Caching.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Caching\lib\netstandard2.0\System.Runtime.Caching.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\net462\System.Runtime.CompilerServices.Unsafe.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\net6.0\System.Runtime.CompilerServices.Unsafe.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netstandard1.1\System.Runtime.InteropServices.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netstandard1.2\System.Runtime.InteropServices.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices.RuntimeInformation\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.InteropServices.RuntimeInformation\lib\wpa81\System.Runtime.InteropServices.RuntimeInformation.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Loader\lib\netstandard1.5\System.Runtime.Loader.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Loader\ref\netstandard1.5\System.Runtime.Loader.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Security.AccessControl\lib\net461\System.Security.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.AccessControl\lib\net6.0\System.Security.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.AccessControl\lib\netstandard2.0\System.Security.AccessControl.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netcoreapp2.1\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netcoreapp2.1\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netcoreapp3.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netcoreapp3.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\lib\netstandard2.1\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Cng\ref\netstandard2.1\System.Security.Cryptography.Cng.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll + False + True + + + + + + + + + True + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net462\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net8.0\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\net9.0\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.X509Certificates\ref\netstandard1.3\System.Security.Cryptography.X509Certificates.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\lib\net461\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\ref\netcoreapp3.0\System.Security.Principal.Windows.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\lib\netstandard1.3\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encoding.CodePages\lib\netstandard2.0\System.Text.Encoding.CodePages.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encodings.Web\lib\net462\System.Text.Encodings.Web.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Text.Encodings.Web\lib\netstandard2.0\System.Text.Encodings.Web.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Json\lib\net462\System.Text.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Text.Json\lib\net8.0\System.Text.Json.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Text.Json\lib\netstandard2.0\System.Text.Json.dll + True + True + + + + + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\ref\netstandard1.0\System.Text.RegularExpressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Threading\lib\netstandard1.3\System.Threading.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Threading\ref\netstandard1.3\System.Threading.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Threading.Tasks.Extensions\lib\net462\System.Threading.Tasks.Extensions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.ValueTuple\lib\net462\System.ValueTuple.dll + True + True + + + + + + + ..\..\..\packages\samples\System.ValueTuple\lib\net47\System.ValueTuple.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Xml.ReaderWriter\ref\netstandard1.0\System.Xml.ReaderWriter.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Xml.XDocument\ref\netstandard1.0\System.Xml.XDocument.dll + False + True + + + + + + + ..\..\..\packages\samples\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll + False True + \ No newline at end of file diff --git a/src/SqlClient.Samples/WpfDataBinding/paket.references b/src/SqlClient.Samples/WpfDataBinding/paket.references index df9e822b..891c6598 100644 --- a/src/SqlClient.Samples/WpfDataBinding/paket.references +++ b/src/SqlClient.Samples/WpfDataBinding/paket.references @@ -1,4 +1,5 @@ group Samples FSharp.Core + Microsoft.Data.SqlClient FSharp.Data.SqlClient Microsoft.SqlServer.Types \ No newline at end of file diff --git a/src/SqlClient.TestProjects/Lib/Lib.fsproj b/src/SqlClient.TestProjects/Lib/Lib.fsproj index dc8a1992..04b6491c 100644 --- a/src/SqlClient.TestProjects/Lib/Lib.fsproj +++ b/src/SqlClient.TestProjects/Lib/Lib.fsproj @@ -1,24 +1,28 @@ - - - - + + net471;netstandard2.0;net8.0 + true Lib false true - - .\bin\release\Lib.XML - + - - + + + + + + + + + ..\..\..\bin\net8.0\FSharp.Data.SqlClient.dll @@ -30,4 +34,4 @@ - \ No newline at end of file + diff --git a/src/SqlClient.TestProjects/Lib/Script.fsx b/src/SqlClient.TestProjects/Lib/Script.fsx index 52be7623..5891228a 100644 --- a/src/SqlClient.TestProjects/Lib/Script.fsx +++ b/src/SqlClient.TestProjects/Lib/Script.fsx @@ -1,3 +1,4 @@ +#r "nuget: Microsoft.Data.SqlClient" #r @"..\..\..\bin\net462\FSharp.Data.SqlClient.dll" #r @"bin\Debug\Lib.dll" #r @"System.Configuration" diff --git a/src/SqlClient.TestProjects/Lib/paket.references b/src/SqlClient.TestProjects/Lib/paket.references index fcc18951..88a8a30e 100644 --- a/src/SqlClient.TestProjects/Lib/paket.references +++ b/src/SqlClient.TestProjects/Lib/paket.references @@ -1,4 +1,9 @@ group TestProjects FSharp.Core System.Data.SqlClient + Microsoft.Data.SqlClient System.Configuration.ConfigurationManager + System.Text.Json + Microsoft.SqlServer.Server + + diff --git a/src/SqlClient.TestProjects/SqlClient.Tests.NET40/SqlClient.Tests.NET40.fsproj b/src/SqlClient.TestProjects/SqlClient.Tests.NET40/SqlClient.Tests.NET40.fsproj index d3dccc89..05f7f8b6 100644 --- a/src/SqlClient.TestProjects/SqlClient.Tests.NET40/SqlClient.Tests.NET40.fsproj +++ b/src/SqlClient.TestProjects/SqlClient.Tests.NET40/SqlClient.Tests.NET40.fsproj @@ -1,10 +1,7 @@ - - - - + Exe - net462 + net471 SqlClient.Tests.NET40 false true @@ -18,6 +15,14 @@ + + + + + + + + diff --git a/src/SqlClient.TestProjects/SqlClient.Tests.NET40/paket.references b/src/SqlClient.TestProjects/SqlClient.Tests.NET40/paket.references index 6db7650b..dfc5d5c9 100644 --- a/src/SqlClient.TestProjects/SqlClient.Tests.NET40/paket.references +++ b/src/SqlClient.TestProjects/SqlClient.Tests.NET40/paket.references @@ -1,2 +1,8 @@ group Net40 FSharp.Core + System.Data.SqlClient + Microsoft.Data.SqlClient + System.Configuration.ConfigurationManager + System.Text.Json + Microsoft.SqlServer.Server + Microsoft.Identity.Client diff --git a/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/SqlClient.Tests.NetCoreApp.fsproj b/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/SqlClient.Tests.NetCoreApp.fsproj index a71e257f..3550a091 100644 --- a/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/SqlClient.Tests.NetCoreApp.fsproj +++ b/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/SqlClient.Tests.NetCoreApp.fsproj @@ -1,12 +1,19 @@ - - - + Exe net8.0 true + true + + + + + + + + ..\..\..\bin\net8.0\FSharp.Data.SqlClient.dll diff --git a/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/paket.references b/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/paket.references index eeaf7709..e7f5a60b 100644 --- a/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/paket.references +++ b/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/paket.references @@ -1,4 +1,6 @@ group TestProjects FSharp.Core System.Data.SqlClient - System.Configuration.ConfigurationManager \ No newline at end of file + Microsoft.Data.SqlClient + System.Configuration.ConfigurationManager + Microsoft.Identity.Client diff --git a/src/SqlClient/AssemblyInfo.fs b/src/SqlClient/AssemblyInfo.fs index 2f76163d..e0e173a2 100644 --- a/src/SqlClient/AssemblyInfo.fs +++ b/src/SqlClient/AssemblyInfo.fs @@ -6,8 +6,8 @@ open System.Runtime.CompilerServices [] [] [] -[] -[] +[] +[] [] do () @@ -15,6 +15,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "SqlClient" let [] AssemblyProduct = "FSharp.Data.SqlClient" let [] AssemblyDescription = "SqlClient F# type providers" - let [] AssemblyVersion = "2.1.3" - let [] AssemblyFileVersion = "2.1.3" + let [] AssemblyVersion = "2.2.0" + let [] AssemblyFileVersion = "2.2.0" let [] InternalsVisibleTo = "SqlClient.Tests" diff --git a/src/SqlClient/DataTable.fs b/src/SqlClient/DataTable.fs index 03a6a8da..f9570989 100644 --- a/src/SqlClient/DataTable.fs +++ b/src/SqlClient/DataTable.fs @@ -2,7 +2,7 @@ open System open System.Data -open System.Data.SqlClient +open Microsoft.Data.SqlClient open System.Collections.Generic open FSharp.Data.SqlClient.Internals diff --git a/src/SqlClient/Extensions.fs b/src/SqlClient/Extensions.fs index 98d076c0..7cc52f3c 100644 --- a/src/SqlClient/Extensions.fs +++ b/src/SqlClient/Extensions.fs @@ -2,7 +2,7 @@ open System open System.Data -open System.Data.SqlClient +open Microsoft.Data.SqlClient [] module Extensions = diff --git a/src/SqlClient/ISqlCommand.fs b/src/SqlClient/ISqlCommand.fs index ec6b76a7..ccb7aae5 100644 --- a/src/SqlClient/ISqlCommand.fs +++ b/src/SqlClient/ISqlCommand.fs @@ -1,6 +1,6 @@ namespace FSharp.Data.SqlClient -open System.Data.SqlClient +open Microsoft.Data.SqlClient [] type ISqlCommand = @@ -19,7 +19,7 @@ namespace FSharp.Data.SqlClient.Internals open System open System.Data -open System.Data.SqlClient +open Microsoft.Data.SqlClient open System.Reflection open FSharp.Data.SqlClient open FSharp.Data.SqlClient.Internals @@ -230,11 +230,11 @@ type ``ISqlCommand Implementation``(cfg: DesignTimeConfig, connection: Connectio | SqlDbType.Structured -> // TODO: Maybe make this lazy? - //p.Value <- value |> unbox |> Seq.cast + //p.Value <- value |> unbox |> Seq.cast //done via reflection because not implemented on Mono - let sqlDataRecordType = typeof.Assembly.GetType("Microsoft.SqlServer.Server.SqlDataRecord", throwOnError = true) + let sqlDataRecordType = typeof.Assembly.GetType("Microsoft.SqlServer.Server.SqlDataRecord", throwOnError = true) let records = typeof.GetMethod("Cast").MakeGenericMethod(sqlDataRecordType).Invoke(null, [| value |]) let hasAny = let anyMeth = diff --git a/src/SqlClient/Shared.fs b/src/SqlClient/Shared.fs index 500354af..8cf4766e 100644 --- a/src/SqlClient/Shared.fs +++ b/src/SqlClient/Shared.fs @@ -22,7 +22,7 @@ open System open System.Text open System.Data open System.Collections.Generic -open System.Data.SqlClient +open Microsoft.Data.SqlClient open System.Runtime.Serialization open System.Runtime.Serialization.Json open System.IO diff --git a/src/SqlClient/SqlClient.fsproj b/src/SqlClient/SqlClient.fsproj index 64ec69aa..8021ac9c 100644 --- a/src/SqlClient/SqlClient.fsproj +++ b/src/SqlClient/SqlClient.fsproj @@ -21,7 +21,13 @@ - + + + + + + + diff --git a/tests/SqlClient.DesignTime.Tests/paket.references b/tests/SqlClient.DesignTime.Tests/paket.references index 4a30f472..e125a5e3 100644 --- a/tests/SqlClient.DesignTime.Tests/paket.references +++ b/tests/SqlClient.DesignTime.Tests/paket.references @@ -1,6 +1,6 @@ group Test FSharp.Core - System.Data.SqlClient + Microsoft.Data.SqlClient System.Configuration.ConfigurationManager xunit xunit.runner.visualstudio diff --git a/tests/SqlClient.SqlServerTypes.Tests/App.config b/tests/SqlClient.SqlServerTypes.Tests/App.config index 9ba1f0ef..071bedc7 100644 --- a/tests/SqlClient.SqlServerTypes.Tests/App.config +++ b/tests/SqlClient.SqlServerTypes.Tests/App.config @@ -17,6 +17,6 @@ True - + diff --git a/tests/SqlClient.SqlServerTypes.Tests/paket.references b/tests/SqlClient.SqlServerTypes.Tests/paket.references index efe1a3f2..219edcf1 100644 --- a/tests/SqlClient.SqlServerTypes.Tests/paket.references +++ b/tests/SqlClient.SqlServerTypes.Tests/paket.references @@ -1,6 +1,6 @@ group Test FSharp.Core - System.Data.SqlClient + Microsoft.Data.SqlClient System.Configuration.ConfigurationManager Microsoft.SqlServer.Types redirects: force Newtonsoft.Json diff --git a/tests/SqlClient.Tests/CreateCommand.fs b/tests/SqlClient.Tests/CreateCommand.fs index 6ae94644..6b1729d8 100644 --- a/tests/SqlClient.Tests/CreateCommand.fs +++ b/tests/SqlClient.Tests/CreateCommand.fs @@ -145,7 +145,7 @@ module TraceTests = let resultSetMapping() = let cmd = DB.CreateCommand<"SELECT * FROM (VALUES ('F#', 2005), ('Scala', 2003), ('foo bar',NULL)) AS T(lang, DOB)", ResultType.DataReader>() - let readToMap(reader : System.Data.SqlClient.SqlDataReader) = + let readToMap(reader : Microsoft.Data.SqlClient.SqlDataReader) = seq { try while(reader.Read()) do @@ -182,7 +182,7 @@ let ``Runtime column names``() = use cmd = DB.CreateCommand<"exec dbo.[Get]", ResultType.DataReader>() Assert.False( cmd.Execute().NextResult()) -open System.Data.SqlClient +open Microsoft.Data.SqlClient type SqlDataReader with member this.ToRecords<'T>() = seq { @@ -199,7 +199,7 @@ let CreareDynamicRecords() = use cmd = DB.CreateCommand() use conn = new SqlConnection(ConnectionStrings.AdventureWorksLiteral) conn.Open() - let cmd = new System.Data.SqlClient.SqlCommand(getDatesQuery, conn) + let cmd = new Microsoft.Data.SqlClient.SqlCommand(getDatesQuery, conn) cmd.ExecuteReader().ToRecords() |> Seq.toArray diff --git a/tests/SqlClient.Tests/DataTablesTests.fs b/tests/SqlClient.Tests/DataTablesTests.fs index d1389e2c..55981596 100644 --- a/tests/SqlClient.Tests/DataTablesTests.fs +++ b/tests/SqlClient.Tests/DataTablesTests.fs @@ -3,7 +3,7 @@ open System open System.Configuration open System.Transactions -open System.Data.SqlClient +open Microsoft.Data.SqlClient open System.Data open FSharp.Data open FSharp.Data.SqlClient diff --git a/tests/SqlClient.Tests/ProgrammabilityTests.fs b/tests/SqlClient.Tests/ProgrammabilityTests.fs index 42c7a7d9..892b1cc6 100644 --- a/tests/SqlClient.Tests/ProgrammabilityTests.fs +++ b/tests/SqlClient.Tests/ProgrammabilityTests.fs @@ -4,7 +4,7 @@ open FSharp.Data.SqlClient open FSharp.Data.SqlClient.Tests open System -open System.Data.SqlClient +open Microsoft.Data.SqlClient open Xunit type AdventureWorks = SqlProgrammabilityProvider diff --git a/tests/SqlClient.Tests/ResultTypeTests.fs b/tests/SqlClient.Tests/ResultTypeTests.fs index 90505ec7..9c061bc0 100644 --- a/tests/SqlClient.Tests/ResultTypeTests.fs +++ b/tests/SqlClient.Tests/ResultTypeTests.fs @@ -14,7 +14,7 @@ let command = "SELECT * FROM (VALUES ('F#', 2005), ('Scala', 2003), ('foo bar',N type ResultTypeReader = SqlCommandProvider -let ReadToMaps(reader : System.Data.SqlClient.SqlDataReader) = +let ReadToMaps(reader : Microsoft.Data.SqlClient.SqlDataReader) = seq { try while(reader.Read()) do diff --git a/tests/SqlClient.Tests/Scripts/CreateCommand.fsx b/tests/SqlClient.Tests/Scripts/CreateCommand.fsx index 5e1c7b71..4c641644 100644 --- a/tests/SqlClient.Tests/Scripts/CreateCommand.fsx +++ b/tests/SqlClient.Tests/Scripts/CreateCommand.fsx @@ -3,7 +3,7 @@ open System open System.Data open FSharp.Data -open System.Data.SqlClient +open Microsoft.Data.SqlClient [] let connectionString = "Data Source=.;Initial Catalog=AdventureWorks2012;Integrated Security=True;TrustServerCertificate=true" diff --git a/tests/SqlClient.Tests/Scripts/SqlCommand.fsx b/tests/SqlClient.Tests/Scripts/SqlCommand.fsx index b3265057..40d4bd75 100644 --- a/tests/SqlClient.Tests/Scripts/SqlCommand.fsx +++ b/tests/SqlClient.Tests/Scripts/SqlCommand.fsx @@ -159,7 +159,7 @@ let getDatesQuery = "SELECT GETDATE() AS Now, GETUTCDATE() AS UtcNow" let localhost = "Data Source=.;Integrated Security=True;" type GetDates = SqlCommandProvider -open System.Data.SqlClient +open Microsoft.Data.SqlClient type SqlDataReader with member this.ToRecords<'T>() = seq { @@ -171,7 +171,7 @@ type SqlDataReader with let xs = use conn = new SqlConnection(localhost) conn.Open() - let cmd = new System.Data.SqlClient.SqlCommand(getDatesQuery, conn) + let cmd = new Microsoft.Data.SqlClient.SqlCommand(getDatesQuery, conn) cmd.ExecuteReader().ToRecords() |> Seq.toArray diff --git a/tests/SqlClient.Tests/SynonymsTests.fs b/tests/SqlClient.Tests/SynonymsTests.fs index 2063e1cb..aded6d6a 100644 --- a/tests/SqlClient.Tests/SynonymsTests.fs +++ b/tests/SqlClient.Tests/SynonymsTests.fs @@ -2,7 +2,7 @@ open System open System.Data -open System.Data.SqlClient +open Microsoft.Data.SqlClient open FSharp.Data open FSharp.Data.SqlClient open FSharp.Data.SqlClient.Tests diff --git a/tests/SqlClient.Tests/TVPTests.fs b/tests/SqlClient.Tests/TVPTests.fs index 2bde0a5c..56dd24c1 100644 --- a/tests/SqlClient.Tests/TVPTests.fs +++ b/tests/SqlClient.Tests/TVPTests.fs @@ -106,7 +106,7 @@ let TwoTVPParameterOfSameUDTT() = let expected = [ for id, name in xs @ ys -> MyFunc.Record(id, name) ] Assert.Equal<_ list>(expected, cmd.Execute(xs', ys') |> Seq.toList) -open System.Data.SqlClient +open Microsoft.Data.SqlClient [] let ReuseTVPTypeForDynamicADONET() = diff --git a/tests/SqlClient.Tests/TempTableTests.fs b/tests/SqlClient.Tests/TempTableTests.fs index 52deeac2..93957efc 100644 --- a/tests/SqlClient.Tests/TempTableTests.fs +++ b/tests/SqlClient.Tests/TempTableTests.fs @@ -4,7 +4,7 @@ open FSharp.Data.SqlClient.Tests open FSharp.Data open Xunit -open System.Data.SqlClient +open Microsoft.Data.SqlClient type TempTable = SqlCommandProvider< diff --git a/tests/SqlClient.Tests/TransactionTests.fs b/tests/SqlClient.Tests/TransactionTests.fs index e1b6b07c..a9528a4d 100644 --- a/tests/SqlClient.Tests/TransactionTests.fs +++ b/tests/SqlClient.Tests/TransactionTests.fs @@ -3,7 +3,7 @@ open System open System.Data open System.Transactions -open System.Data.SqlClient +open Microsoft.Data.SqlClient open Xunit diff --git a/tests/SqlClient.Tests/TypeProviderTest.fs b/tests/SqlClient.Tests/TypeProviderTest.fs index c396a11a..e8ba8e16 100644 --- a/tests/SqlClient.Tests/TypeProviderTest.fs +++ b/tests/SqlClient.Tests/TypeProviderTest.fs @@ -5,7 +5,7 @@ open FSharp.Data.SqlClient open FSharp.Data.SqlClient.Tests open System open System.Data -open System.Data.SqlClient +open Microsoft.Data.SqlClient open Xunit type GetEvenNumbers = SqlCommandProvider<"select * from (values (2), (4), (8), (24)) as T(value)", ConnectionStrings.AdventureWorksNamed> @@ -104,7 +104,7 @@ let ToTraceString() = let runScalarQuery query = use conn = new SqlConnection(ConnectionStrings.AdventureWorks) conn.Open() - use cmd = new System.Data.SqlClient.SqlCommand() + use cmd = new Microsoft.Data.SqlClient.SqlCommand() cmd.Connection <- conn cmd.CommandText <- query cmd.ExecuteScalar() diff --git a/tests/SqlClient.Tests/paket.references b/tests/SqlClient.Tests/paket.references index d7f63edd..055bb68d 100644 --- a/tests/SqlClient.Tests/paket.references +++ b/tests/SqlClient.Tests/paket.references @@ -1,7 +1,12 @@ group Test FSharp.Core - System.Data.SqlClient + Microsoft.Data.SqlClient System.Configuration.ConfigurationManager + System.Data.SqlClient + System.Text.Json + Microsoft.SqlServer.Server + Microsoft.SqlServer.Types + Microsoft.Identity.Client Newtonsoft.Json xunit