Skip to content

Commit e3f5173

Browse files
committed
Fix for API changes (GetProcessStartInfo)
1 parent 1a40702 commit e3f5173

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ReSharper.FSharp/src/FSharp.Fantomas.Protocol/src/FantomasProcess.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ protected override FantomasConnection CreateConnection(Lifetime lifetime,
3030
new FantomasConnection(lifetime, model, protocol, outputWriter, processId,
3131
processUnexpectedExited);
3232

33-
protected override ProcessStartInfo GetProcessStartInfo(int port)
33+
protected override ProcessStartInfo GetProcessStartInfo(Lifetime lifetime, int port)
3434
{
3535
var launchPath = FantomasDirectory.Combine(FantomasProtocolConstants.PROCESS_FILENAME);
3636
Assertion.Assert(launchPath.ExistsFile, $"can't find '{launchPath}'");

ReSharper.FSharp/src/FSharp.TypeProviders.Protocol/src/TypeProvidersExternalProcess.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected override TypeProvidersConnection CreateConnection(Lifetime lifetime,
3535
processUnexpectedExited);
3636
}
3737

38-
protected override ProcessStartInfo GetProcessStartInfo(int port)
38+
protected override ProcessStartInfo GetProcessStartInfo(Lifetime lifetime, int port)
3939
{
4040
var basePath = GetType().Assembly.GetPath().Directory;
4141

0 commit comments

Comments
 (0)