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 _ ->
278278 try
279279 DotNet.test ( dnTestOptions " net462" ) testSlnPath
280280 DotNet.test ( dnTestOptions " netcoreapp3.1" ) testProjectPath
281+ DotNet.test ( dnTestOptions " net8.0" ) testProjectPath
281282 with
282283 | ex ->
283284 Trace.log ( sprintf " Test exception: %A " ex)
Original file line number Diff line number Diff line change 33 <!-- <Import Project="..\..\fsc.props" />-->
44 <!-- <Import Project="..\..\netfx.props" />-->
55 <PropertyGroup >
6- <TargetFramework >net8.0 </TargetFramework >
6+ <TargetFramework >net462 </TargetFramework >
77 <AssemblyName >SqlClient.DesignTime.Tests</AssemblyName >
88 <EnableDefaultCompileItems >false</EnableDefaultCompileItems >
99 <AutoGenerateBindingRedirects >true</AutoGenerateBindingRedirects >
1515 <Compile Include =" DesignTimeConnectionStringTests.fs" />
1616 </ItemGroup >
1717 <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" >
2022 <HintPath >..\..\bin\typeproviders\fsharp41\net8.0\FSharp.Data.SqlClient.DesignTime.dll</HintPath >
2123 </Reference >
2224 </ItemGroup >
Original file line number Diff line number Diff line change 1010 <assemblyIdentity name =" xunit" publicKeyToken =" 8d05b1bb7a6fdb6c" culture =" neutral" />
1111 <bindingRedirect oldVersion =" 0.0.0.0-65535.65535.65535.65535" newVersion =" 1.9.2.1705" />
1212 </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" />
1315 <dependentAssembly >
1416 <Paket >True</Paket >
1517 <assemblyIdentity name =" Microsoft.SqlServer.Types" publicKeyToken =" 89845dcd8080cc91" culture =" neutral" />
Original file line number Diff line number Diff line change 1616 <Compile Include =" SpatialTypesTests.fs" />
1717 </ItemGroup >
1818 <ItemGroup >
19- <Reference Include =" FSharp.Data.SqlClient" >
19+ <Reference Condition = " $(TargetFramework) == 'net8.0' " Include =" FSharp.Data.SqlClient" >
2020 <HintPath >..\..\bin\netstandard2.0\FSharp.Data.SqlClient.dll</HintPath >
2121 </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+
2229 </ItemGroup >
2330 <Import Project =" ..\..\.paket\Paket.Restore.targets" />
2431</Project >
You can’t perform that action at this time.
0 commit comments