Skip to content

Commit d01264e

Browse files

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

src/DiffEngine/EnvironmentHelper.cs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
static class EnvironmentHelper
2+
{
3+
public static void Set(string name, string? value)
4+
{
5+
Environment.SetEnvironmentVariable(name, value, EnvironmentVariableTarget.User);
6+
Environment.SetEnvironmentVariable(name, value, EnvironmentVariableTarget.Process);
7+
}
8+
}

src/DiffEngine/MaxInstance.cs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
static class MaxInstance
22
{
33
public static int MaxInstancesToLaunch => capturedMaxInstancesToLaunch ??= GetMaxInstances();
4+
45
static int? capturedMaxInstancesToLaunch;
56
static int? appDomainMaxInstancesToLaunch;
67
static int launchedInstances;
78
const int defaultMax = 5;
89

9-
static int GetMaxInstances() => GetEnvironmentValue() ?? appDomainMaxInstancesToLaunch ?? defaultMax;
10+
static int GetMaxInstances() => GetEnvironmentValue() ??
11+
appDomainMaxInstancesToLaunch ??
12+
defaultMax;
1013

1114
static int? GetEnvironmentValue()
1215
{
@@ -37,7 +40,7 @@ public static void SetForAppDomain(int value)
3740
public static void SetForUser(int value)
3841
{
3942
Guard.AgainstNegativeAndZero(value, nameof(value));
40-
Environment.SetEnvironmentVariable("DiffEngine_MaxInstances", value.ToString(), EnvironmentVariableTarget.User);
43+
EnvironmentHelper.Set("DiffEngine_MaxInstances", value.ToString());
4144
ResetCapturedValue();
4245
}
4346

src/DiffEngine/TargetPosition.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ public static void SetTargetOnLeft(bool value)
4545
envVariable = null;
4646
}
4747

48-
Environment.SetEnvironmentVariable("DiffEngine_TargetOnLeft", envVariable, EnvironmentVariableTarget.User);
48+
EnvironmentHelper.Set("DiffEngine_TargetOnLeft", envVariable);
4949
}
5050
}

src/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project>
33
<PropertyGroup>
44
<NoWarn>CS1591;CS0649</NoWarn>
5-
<Version>13.0.0</Version>
5+
<Version>13.0.1</Version>
66
<AssemblyVersion>1.0.0</AssemblyVersion>
77
<PackageTags>Testing, Snapshot, Diff, Compare</PackageTags>
88
<Description>Launches diff tools based on file extensions. Designed to be consumed by snapshot testing libraries.</Description>

0 commit comments

Comments
 (0)