Skip to content

Commit 7410fc1

Browse files
committed
Only write launchsettings if changed
This avoids unnecessary refreshes in the compiler.
1 parent e7dd91b commit 7410fc1

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

src/SmallSharp/LaunchSettingsGenerator.cs

+13-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
using System.Linq;
2-
using Microsoft.CodeAnalysis;
3-
using System.Collections.Generic;
4-
using Newtonsoft.Json.Linq;
51
using System.IO;
2+
using System.Linq;
3+
using Microsoft.CodeAnalysis;
64
using Newtonsoft.Json;
5+
using Newtonsoft.Json.Linq;
76

87
namespace SmallSharp
98
{
@@ -33,10 +32,16 @@ where compile
3332
if (context.AnalyzerConfigOptions.GlobalOptions.TryGetValue("build_property.MSBuildProjectDirectory", out var directory))
3433
{
3534
Directory.CreateDirectory(Path.Combine(directory, "Properties"));
36-
File.WriteAllText(
37-
Path.Combine(directory, "Properties", "launchSettings.json"),
38-
settings.ToString(Formatting.Indented));
35+
var filePath = Path.Combine(directory, "Properties", "launchSettings.json");
36+
var json = settings.ToString(Formatting.Indented);
37+
38+
// Only write if different content.
39+
if (File.Exists(filePath) &&
40+
File.ReadAllText(filePath) == json)
41+
return;
42+
43+
File.WriteAllText(filePath, json);
3944
}
4045
}
4146
}
42-
}
47+
}

0 commit comments

Comments
 (0)