From b329b906af4c4d77eb4ee7f660a4b97429666c64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ce=CC=81dric=20Luthi?= Date: Tue, 12 Mar 2024 08:47:24 +0100 Subject: [PATCH] Fix warning --- tests/Chisel.Tests/Support/TestApp.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Chisel.Tests/Support/TestApp.cs b/tests/Chisel.Tests/Support/TestApp.cs index fa56191..7cddb18 100644 --- a/tests/Chisel.Tests/Support/TestApp.cs +++ b/tests/Chisel.Tests/Support/TestApp.cs @@ -50,7 +50,7 @@ Task IAsyncLifetime.DisposeAsync() public string GetExecutablePath(PublishMode publishMode) => _executables[publishMode].FullName; - public DirectoryInfo IntermediateOutputPath { get; private set; } + public DirectoryInfo IntermediateOutputPath { get; private set; } = new("."); private async Task CreateTestAppAsync() {