Skip to content

Commit a48a9c7

Browse files
another round of cleaning / tuning the paket.dependencies / running paket install
1 parent f54a1c2 commit a48a9c7

File tree

12 files changed

+483
-499
lines changed

12 files changed

+483
-499
lines changed

paket.dependencies

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
source "C:\Program Files (x86)\Microsoft SDKs\NuGetPackages\"
22
source https://www.myget.org/F/eto/
33
source https://api.nuget.org/v3/index.json
4+
45
framework: >= net45, >= netstandard20
5-
nuget FParsec 1.0.2
6-
nuget FParsec-Pipes 0.4.0
7-
nuget FSharp.Core 4.2.1
8-
nuget FsPickler 3.2.0
9-
nuget FsUnit 3.0.0
10-
nuget LicenseToCIL 0.3.0
11-
nuget Npgsql 3.2.5
12-
nuget NUnit 3.6.0
13-
nuget Rezoom 0.4.2
14-
nuget System.Data.SQLite.Core 1.0.104.0
15-
nuget System.Threading.Tasks.Extensions 4.3.0
16-
nuget System.ValueTuple 4.3.1
17-
nuget System.Configuration.ConfigurationManager # will be needed for netstandard support (https://apisof.net/catalog/System.Configuration.ConnectionStringSettings)
6+
storage: none
7+
strategy: min
8+
redirects: force
9+
10+
11+
nuget FParsec-Pipes 0.4.0
12+
nuget FSharp.Core 4.2.1
13+
nuget FsPickler 3.2.0
14+
nuget FsUnit strategy: max
15+
16+
nuget LicenseToCIL = 0.3.0 # issue with more recent releases : https://github.com/rspeele/Rezoom.SQL/issues/38
17+
nuget Npgsql 3.2.5
18+
nuget Rezoom 0.4.2
19+
nuget System.Data.SQLite.Core 1.0.104
20+
nuget System.Configuration.ConfigurationManager # will be needed for netstandard support (https://apisof.net/catalog/System.Configuration.ConnectionStringSettings)
21+
nuget System.Runtime 4.3.0

paket.lock

Lines changed: 196 additions & 200 deletions
Large diffs are not rendered by default.

src/Rezoom.SQL.Compiler/Rezoom.SQL.Compiler.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>net45;</TargetFrameworks>
4+
<TargetFrameworks>net45</TargetFrameworks>
55
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
66
</PropertyGroup>
77
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
FParsec
21
FParsec-Pipes
32
Rezoom
43
FSharp.Core

src/Rezoom.SQL.Test/app.config

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,40 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33

4-
</configuration>
4+
<runtime><assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5+
<dependentAssembly>
6+
<Paket>True</Paket>
7+
<assemblyIdentity name="FParsec" publicKeyToken="40ccfc0a09edbb5d" culture="neutral" />
8+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.0.0" />
9+
</dependentAssembly>
10+
<dependentAssembly>
11+
<Paket>True</Paket>
12+
<assemblyIdentity name="FParsec-Pipes" publicKeyToken="a7813e45d445015c" culture="neutral" />
13+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="0.4.0.0" />
14+
</dependentAssembly>
15+
<dependentAssembly>
16+
<Paket>True</Paket>
17+
<assemblyIdentity name="FParsecCS" publicKeyToken="40ccfc0a09edbb5d" culture="neutral" />
18+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.0.0" />
19+
</dependentAssembly>
20+
<dependentAssembly>
21+
<Paket>True</Paket>
22+
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
23+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.1.0" />
24+
</dependentAssembly>
25+
<dependentAssembly>
26+
<Paket>True</Paket>
27+
<assemblyIdentity name="LicenseToCIL" publicKeyToken="a7813e45d445015c" culture="neutral" />
28+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="0.3.0.39451" />
29+
</dependentAssembly>
30+
<dependentAssembly>
31+
<Paket>True</Paket>
32+
<assemblyIdentity name="Rezoom" publicKeyToken="a7813e45d445015c" culture="neutral" />
33+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="0.4.2.0" />
34+
</dependentAssembly>
35+
<dependentAssembly>
36+
<Paket>True</Paket>
37+
<assemblyIdentity name="nunit.framework" publicKeyToken="2638cd05610744eb" culture="neutral" />
38+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="3.11.0.0" />
39+
</dependentAssembly>
40+
</assemblyBinding></runtime></configuration>
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
FSharp.Core
22
FsUnit
33
LicenseToCIL
4-
NUnit
54
Rezoom

src/TypeProviderUsers/TypeProviderUser.Postgres/App.config

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,25 @@
1313
<startup>
1414
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
1515
</startup>
16-
</configuration>
16+
<runtime><assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
17+
<dependentAssembly>
18+
<Paket>True</Paket>
19+
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
20+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.1.0" />
21+
</dependentAssembly>
22+
<dependentAssembly>
23+
<Paket>True</Paket>
24+
<assemblyIdentity name="Npgsql" publicKeyToken="5d8b90d52f46fda7" culture="neutral" />
25+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="3.2.5.0" />
26+
</dependentAssembly>
27+
<dependentAssembly>
28+
<Paket>True</Paket>
29+
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
30+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.1.0.0" />
31+
</dependentAssembly>
32+
<dependentAssembly>
33+
<Paket>True</Paket>
34+
<assemblyIdentity name="nunit.framework" publicKeyToken="2638cd05610744eb" culture="neutral" />
35+
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="3.11.0.0" />
36+
</dependentAssembly>
37+
</assemblyBinding></runtime></configuration>

0 commit comments

Comments
 (0)