Skip to content

Commit be58452

Browse files
committed
No need to emit envvars for the profile
Emitting the flie name that was was an artifact of a prior approach exploration obsoleted since. This makes the profiles simpler.
1 parent 9138c25 commit be58452

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/SmallSharp/LaunchSettingsGenerator.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,7 @@ where compile
2525
var settings = new JObject(
2626
new JProperty("profiles", new JObject(
2727
documents.OrderBy(path => Path.GetFileName(path)).Select(path => new JProperty(Path.GetFileName(path), new JObject(
28-
new JProperty("commandName", "Project"),
29-
new JProperty("environmentVariables", new JObject(
30-
new JProperty("source", Path.GetFileName(path))
31-
))
28+
new JProperty("commandName", "Project")
3229
)))
3330
))
3431
);

0 commit comments

Comments
 (0)