diff --git a/src/SharpIDE.Application/Features/Run/RunService.cs b/src/SharpIDE.Application/Features/Run/RunService.cs
index b52d87b..1d662e7 100644
--- a/src/SharpIDE.Application/Features/Run/RunService.cs
+++ b/src/SharpIDE.Application/Features/Run/RunService.cs
@@ -29,7 +29,8 @@ public class RunService
FileName = "dotnet",
Arguments = $"run --project \"{project.FilePath}\" --no-restore",
RedirectStandardOutput = true,
- RedirectStandardError = true
+ RedirectStandardError = true,
+ EnvironmentVariables = []
};
var process = new Process2
diff --git a/src/SharpIDE.Application/SharpIDE.Application.csproj b/src/SharpIDE.Application/SharpIDE.Application.csproj
index 2a1d36a..fa4b644 100644
--- a/src/SharpIDE.Application/SharpIDE.Application.csproj
+++ b/src/SharpIDE.Application/SharpIDE.Application.csproj
@@ -16,7 +16,7 @@
-
+