Skip to content

Commit 73e2bc3

Browse files
committed
Reference provider debug assemblies from TP users so we can CI build debug.
1 parent 15a435e commit 73e2bc3

3 files changed

Lines changed: 21 additions & 21 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ install:
66
- nuget restore src/Rezoom.SQL.sln
77
- nuget install NUnit.Runners -Version 3.2.0 -OutputDirectory testrunner
88
script:
9-
- xbuild /p:Configuration=Release src/Rezoom.SQL.sln
9+
- xbuild /p:Configuration=Debug src/Rezoom.SQL.sln
1010
- mono ./testrunner/NUnit.ConsoleRunner.3.2.0/tools/nunit3-console.exe ./src/Rezoom.SQL.Test/bin/Debug/Rezoom.SQL.Test.dll
1111
- xbuild /p:Configuration=Debug src/TypeProviderUsers/TypeProviderUsers.sln
1212

src/TypeProviderUsers/TypeProviderUser.Postgres/TypeProviderUser.Postgres.fsproj

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
@@ -65,13 +65,13 @@
6565
</ItemGroup>
6666
<ItemGroup>
6767
<Reference Include="FParsec">
68-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\FParsec.dll</HintPath>
68+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\FParsec.dll</HintPath>
6969
</Reference>
7070
<Reference Include="FParsec-Pipes">
71-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\FParsec-Pipes.dll</HintPath>
71+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\FParsec-Pipes.dll</HintPath>
7272
</Reference>
7373
<Reference Include="FParsecCS">
74-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\FParsecCS.dll</HintPath>
74+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\FParsecCS.dll</HintPath>
7575
</Reference>
7676
<Reference Include="FSharp.Core">
7777
<HintPath>..\packages\FSharp.Core.4.2.1\lib\net45\FSharp.Core.dll</HintPath>
@@ -80,7 +80,7 @@
8080
<HintPath>..\packages\FsUnit.3.0.0\lib\net45\FsUnit.NUnit.dll</HintPath>
8181
</Reference>
8282
<Reference Include="LicenseToCIL">
83-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\LicenseToCIL.dll</HintPath>
83+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\LicenseToCIL.dll</HintPath>
8484
</Reference>
8585
<Reference Include="mscorlib" />
8686
<Reference Include="Npgsql">
@@ -90,16 +90,16 @@
9090
<HintPath>..\packages\NUnit.3.6.0\lib\net45\nunit.framework.dll</HintPath>
9191
</Reference>
9292
<Reference Include="Rezoom">
93-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\Rezoom.dll</HintPath>
93+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\Rezoom.dll</HintPath>
9494
</Reference>
9595
<Reference Include="Rezoom.SQL.Compiler">
96-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\Rezoom.SQL.Compiler.dll</HintPath>
96+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\Rezoom.SQL.Compiler.dll</HintPath>
9797
</Reference>
9898
<Reference Include="Rezoom.SQL.Mapping">
99-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\Rezoom.SQL.Mapping.dll</HintPath>
99+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\Rezoom.SQL.Mapping.dll</HintPath>
100100
</Reference>
101101
<Reference Include="Rezoom.SQL.Provider">
102-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\Rezoom.SQL.Provider.dll</HintPath>
102+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\Rezoom.SQL.Provider.dll</HintPath>
103103
</Reference>
104104
<Reference Include="System" />
105105
<Reference Include="System.Core" />
@@ -119,4 +119,4 @@
119119
<Target Name="AfterBuild">
120120
</Target>
121121
-->
122-
</Project>
122+
</Project>

src/TypeProviderUsers/TypeProviderUser.SQLite/TypeProviderUser.SQLite.fsproj

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
@@ -64,13 +64,13 @@
6464
</ItemGroup>
6565
<ItemGroup>
6666
<Reference Include="FParsec">
67-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\FParsec.dll</HintPath>
67+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\FParsec.dll</HintPath>
6868
</Reference>
6969
<Reference Include="FParsec-Pipes">
70-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\FParsec-Pipes.dll</HintPath>
70+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\FParsec-Pipes.dll</HintPath>
7171
</Reference>
7272
<Reference Include="FParsecCS">
73-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\FParsecCS.dll</HintPath>
73+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\FParsecCS.dll</HintPath>
7474
</Reference>
7575
<Reference Include="FSharp.Core">
7676
<HintPath>..\packages\FSharp.Core.4.2.1\lib\net45\FSharp.Core.dll</HintPath>
@@ -82,23 +82,23 @@
8282
<HintPath>..\packages\FsUnit.3.0.0\lib\net45\FsUnit.NUnit.dll</HintPath>
8383
</Reference>
8484
<Reference Include="LicenseToCIL">
85-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\LicenseToCIL.dll</HintPath>
85+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\LicenseToCIL.dll</HintPath>
8686
</Reference>
8787
<Reference Include="mscorlib" />
8888
<Reference Include="nunit.framework">
8989
<HintPath>..\packages\NUnit.3.6.0\lib\net45\nunit.framework.dll</HintPath>
9090
</Reference>
9191
<Reference Include="Rezoom">
92-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\Rezoom.dll</HintPath>
92+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\Rezoom.dll</HintPath>
9393
</Reference>
9494
<Reference Include="Rezoom.SQL.Compiler">
95-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\Rezoom.SQL.Compiler.dll</HintPath>
95+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\Rezoom.SQL.Compiler.dll</HintPath>
9696
</Reference>
9797
<Reference Include="Rezoom.SQL.Mapping">
98-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\Rezoom.SQL.Mapping.dll</HintPath>
98+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\Rezoom.SQL.Mapping.dll</HintPath>
9999
</Reference>
100100
<Reference Include="Rezoom.SQL.Provider">
101-
<HintPath>..\..\Rezoom.SQL.Provider\bin\Release\Rezoom.SQL.Provider.dll</HintPath>
101+
<HintPath>..\..\Rezoom.SQL.Provider\bin\Debug\Rezoom.SQL.Provider.dll</HintPath>
102102
</Reference>
103103
<Reference Include="System" />
104104
<Reference Include="System.Core" />
@@ -125,4 +125,4 @@
125125
<Target Name="AfterBuild">
126126
</Target>
127127
-->
128-
</Project>
128+
</Project>

0 commit comments

Comments
 (0)