From c813815d8ce9411c88e2b2efa54a2c180a15f25f Mon Sep 17 00:00:00 2001 From: filipw Date: Mon, 18 Oct 2021 16:49:45 +0200 Subject: [PATCH 1/2] fixed logging interpolation --- src/OmniSharp.MSBuild/ProjectManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OmniSharp.MSBuild/ProjectManager.cs b/src/OmniSharp.MSBuild/ProjectManager.cs index 6dd5497518..621b494e9a 100644 --- a/src/OmniSharp.MSBuild/ProjectManager.cs +++ b/src/OmniSharp.MSBuild/ProjectManager.cs @@ -329,7 +329,7 @@ private void ProcessQueue(CancellationToken cancellationToken) } catch (Exception ex) { - _logger.LogError(ex, "Failed to load project file '{projectFilePath}'."); + _logger.LogError(ex, $"Failed to load project file '{projectFilePath}'."); _eventEmitter.Error(ex, fileName: projectFilePath); return (null, null); } From 079cb5d1ae6bfe8c3854e1334482be9d7d2ac2f7 Mon Sep 17 00:00:00 2001 From: Joey Robichaud Date: Mon, 18 Oct 2021 10:04:21 -0700 Subject: [PATCH 2/2] Update AzDO Release job to run on ubuntu latest image. --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f9a83864a7..652f9967f6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -111,7 +111,7 @@ jobs: - job: Release pool: - vmImage: "Ubuntu-16.04" + vmImage: "Ubuntu-latest" dependsOn: - macOS - Linux