Skip to content

Commit a923a57

Browse files
committed
fix residual rebase artifacts
1 parent f702e24 commit a923a57

File tree

9 files changed

+473
-114
lines changed

9 files changed

+473
-114
lines changed

src/FsToolkit.ErrorHandling/OptionCE.fs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,6 @@ module OptionCE =
118118
/// </summary>
119119
member inline _.Source(result: 'value option) : 'value option = result
120120

121-
122-
/// <summary>
123-
/// Method lets us transform data types into our internal representation.
124-
/// </summary>
125-
member inline _.Source(vopt: 'value voption) : 'value option = Option.ofValueOption vopt
126-
127121
/// <summary>
128122
/// The default instance of the `OptionBuilder` type.
129123
/// </summary>

tests/FsToolkit.ErrorHandling.AsyncSeq.Tests/FsToolkit.ErrorHandling.AsyncSeq.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
5+
<TargetFrameworks>net8.0</TargetFrameworks>
66
<LangVersion>preview</LangVersion>
77
</PropertyGroup>
88
<ItemGroup>

tests/FsToolkit.ErrorHandling.IcedTasks.Tests/FsToolkit.ErrorHandling.IcedTasks.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
5+
<TargetFrameworks>net8.0</TargetFrameworks>
66
<LangVersion>preview</LangVersion>
77
</PropertyGroup>
88
<ItemGroup>

tests/FsToolkit.ErrorHandling.JobResult.Tests/FsToolkit.ErrorHandling.JobResult.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
5+
<TargetFrameworks>net8.0</TargetFrameworks>
66
<LangVersion>preview</LangVersion>
77
</PropertyGroup>
88

tests/FsToolkit.ErrorHandling.TaskResult.Tests/FsToolkit.ErrorHandling.TaskResult.Tests.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>net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<LangVersion>preview</LangVersion>
66
</PropertyGroup>
77
<ItemGroup>

tests/FsToolkit.ErrorHandling.Tests/AsyncOptionCE.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ let ``AsyncOptionCE using Tests`` =
260260
let! actual =
261261
asyncOption {
262262
use d =
263-
makeDisposable (fun () ->
263+
TestHelpers.makeDisposable (fun () ->
264264
disposed <- true
265265

266266
if not finished then

tests/FsToolkit.ErrorHandling.Tests/AsyncResultCE.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ let ``AsyncResultCE using Tests`` =
343343
let! actual =
344344
asyncResult {
345345
use d =
346-
makeDisposable (fun () ->
346+
TestHelpers.makeDisposable (fun () ->
347347
disposed <- true
348348

349349
if not finished then

tests/FsToolkit.ErrorHandling.Tests/FsToolkit.ErrorHandling.Tests.fsproj

Lines changed: 2 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
5+
<TargetFrameworks>net8.0</TargetFrameworks>
66
<LangVersion>preview</LangVersion>
77
</PropertyGroup>
88
<ItemGroup>
99
<ProjectReference Include="../../src/FsToolkit.ErrorHandling/FsToolkit.ErrorHandling.fsproj">
1010
</ProjectReference>
1111
</ItemGroup>
1212
<ItemGroup>
13+
<Compile Include="TestHelpers.fs" />
1314
<Compile Include="SampleDomain.fs" />
1415
<Compile Include="TestData.fs" />
1516
<Compile Include="Expect.fs" />
@@ -39,43 +40,4 @@
3940
<Watch Include="@(None)" />
4041
</ItemGroup>
4142
<Import Project="..\..\.paket\Paket.Restore.targets" />
42-
<PropertyGroup>
43-
<OutputType>Exe</OutputType>
44-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
45-
<LangVersion>preview</LangVersion>
46-
</PropertyGroup>
47-
<ItemGroup>
48-
<ProjectReference Include="../../src/FsToolkit.ErrorHandling/FsToolkit.ErrorHandling.fsproj">
49-
</ProjectReference>
50-
</ItemGroup>
51-
<ItemGroup>
52-
<Compile Include="TestHelpers.fs" />
53-
<Compile Include="SampleDomain.fs" />
54-
<Compile Include="TestData.fs" />
55-
<Compile Include="Expect.fs" />
56-
<Compile Include="Result.fs" />
57-
<Compile Include="ResultCE.fs" />
58-
<Compile Include="ResultOption.fs" />
59-
<Compile Include="ResultOptionCE.fs" />
60-
<Compile Include="Option.fs" />
61-
<Compile Include="OptionCE.fs" />
62-
<Compile Include="ValueOption.fs" />
63-
<Compile Include="ValueOptionCE.fs" />
64-
<Compile Include="AsyncOption.fs" />
65-
<Compile Include="AsyncOptionCE.fs" />
66-
<Compile Include="List.fs" />
67-
<Compile Include="Seq.fs" />
68-
<Compile Include="AsyncResult.fs" />
69-
<Compile Include="AsyncResultCE.fs" />
70-
<Compile Include="AsyncResultOption.fs" />
71-
<Compile Include="AsyncResultOptionCE.fs" />
72-
<Compile Include="Validation.fs" />
73-
<Compile Include="ValidationCE.fs" />
74-
<Compile Include="AsyncValidation.fs" />
75-
<Compile Include="AsyncValidationCE.fs" />
76-
<Compile Include="Main.fs" />
77-
<None Include="paket.references" />
78-
<Watch Include="@(None)" />
79-
</ItemGroup>
80-
<Import Project="..\..\.paket\Paket.Restore.targets" />
8143
</Project>

0 commit comments

Comments
 (0)