Skip to content

Commit 3c9ec3c

Browse files
committed
Fix Appveyor error
1 parent f6edcaf commit 3c9ec3c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/CommandLine/Infrastructure/CSharpx/Either.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ public static void Match<TLeft, TRight>(this Either<TLeft, TRight> either, Actio
272272
#endregion
273273

274274
/// <summary>
275-
/// Equivalent to monadic <see cref="CSharpx.Either.Return{TLeft, TRight}"/> operation.
275+
/// Equivalent to monadic <see cref="CSharpx.Either.Return{TRight}"/> operation.
276276
/// Builds a <see cref="CSharpx.Right{TLeft, TRight}"/> value in case <paramref name="value"/> by default.
277277
/// </summary>
278278
public static Either<string, TRight> ToEither<TRight>(this TRight value)
@@ -312,4 +312,4 @@ public static bool IsRight<TLeft, TRight>(this Either<TLeft, TRight> either)
312312
return either.Tag == EitherType.Right;
313313
}
314314
}
315-
}
315+
}

tests/CommandLine.Tests/Unit/UnParserExtensionsTests.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
using Xunit;
77
using FluentAssertions;
88
using CommandLine.Tests.Fakes;
9-
9+
#if !SKIP_FSHARP
10+
using Microsoft.FSharp.Core;
11+
#endif
12+
1013
namespace CommandLine.Tests.Unit
1114
{
1215
public class UnParserExtensionsTests

0 commit comments

Comments
 (0)