File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed
SqlClient.DesignTime.Tests
SqlClient.SqlServerTypes.Tests Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -278,6 +278,7 @@ Target.create "RunTests" (fun _ ->
278
278
try
279
279
DotNet.test ( dnTestOptions " net462" ) testSlnPath
280
280
DotNet.test ( dnTestOptions " netcoreapp3.1" ) testProjectPath
281
+ DotNet.test ( dnTestOptions " net8.0" ) testProjectPath
281
282
with
282
283
| ex ->
283
284
Trace.log ( sprintf " Test exception: %A " ex)
Original file line number Diff line number Diff line change 3
3
<!-- <Import Project="..\..\fsc.props" />-->
4
4
<!-- <Import Project="..\..\netfx.props" />-->
5
5
<PropertyGroup >
6
- <TargetFramework >net8.0 </TargetFramework >
6
+ <TargetFramework >net462 </TargetFramework >
7
7
<AssemblyName >SqlClient.DesignTime.Tests</AssemblyName >
8
8
<EnableDefaultCompileItems >false</EnableDefaultCompileItems >
9
9
<AutoGenerateBindingRedirects >true</AutoGenerateBindingRedirects >
15
15
<Compile Include =" DesignTimeConnectionStringTests.fs" />
16
16
</ItemGroup >
17
17
<ItemGroup >
18
- <Reference Include =" FSharp.Data.SqlClient.DesignTime" >
19
- <!-- <HintPath>..\..\bin\typeproviders\fsharp41\net461\FSharp.Data.SqlClient.DesignTime.dll</HintPath>-->
18
+ <Reference Condition =" $(TargetFramework) == 'net462'" Include =" FSharp.Data.SqlClient.DesignTime" >
19
+ <HintPath >..\..\bin\typeproviders\fsharp41\net461\FSharp.Data.SqlClient.DesignTime.dll</HintPath >
20
+ </Reference >
21
+ <Reference Condition =" $(TargetFramework) == 'net8.0'" Include =" FSharp.Data.SqlClient.DesignTime" >
20
22
<HintPath >..\..\bin\typeproviders\fsharp41\net8.0\FSharp.Data.SqlClient.DesignTime.dll</HintPath >
21
23
</Reference >
22
24
</ItemGroup >
Original file line number Diff line number Diff line change 10
10
<assemblyIdentity name =" xunit" publicKeyToken =" 8d05b1bb7a6fdb6c" culture =" neutral" />
11
11
<bindingRedirect oldVersion =" 0.0.0.0-65535.65535.65535.65535" newVersion =" 1.9.2.1705" />
12
12
</dependentAssembly >
13
+ <assemblyIdentity name =" FSharp.Core" publicKeyToken =" b03f5f7f11d50a3a" culture =" neutral" />
14
+ <bindingRedirect oldVersion =" 0.0.0.0-65535.65535.65535.65535" newVersion =" 8.0.0.0" />
13
15
<dependentAssembly >
14
16
<Paket >True</Paket >
15
17
<assemblyIdentity name =" Microsoft.SqlServer.Types" publicKeyToken =" 89845dcd8080cc91" culture =" neutral" />
Original file line number Diff line number Diff line change 16
16
<Compile Include =" SpatialTypesTests.fs" />
17
17
</ItemGroup >
18
18
<ItemGroup >
19
- <Reference Include =" FSharp.Data.SqlClient" >
19
+ <Reference Condition = " $(TargetFramework) == 'net8.0' " Include =" FSharp.Data.SqlClient" >
20
20
<HintPath >..\..\bin\netstandard2.0\FSharp.Data.SqlClient.dll</HintPath >
21
21
</Reference >
22
+ <Reference Condition =" $(TargetFramework) == 'netstandard2.0'" Include =" FSharp.Data.SqlClient" >
23
+ <HintPath >..\..\bin\netstandard2.0\FSharp.Data.SqlClient.dll</HintPath >
24
+ </Reference >
25
+ <Reference Condition =" $(TargetFramework) == 'net462'" Include =" FSharp.Data.SqlClient" >
26
+ <HintPath >..\..\bin\net40\FSharp.Data.SqlClient.dll</HintPath >
27
+ </Reference >
28
+
22
29
</ItemGroup >
23
30
<Import Project =" ..\..\.paket\Paket.Restore.targets" />
24
31
</Project >
You can’t perform that action at this time.
0 commit comments