From 5971ba45af8a272f4d37666a86a7a392326c875b Mon Sep 17 00:00:00 2001 From: Jan Vorlicek Date: Wed, 22 Jan 2020 23:27:31 +0100 Subject: [PATCH] Fix System.Net.Quick.csproj configurations (#1675) The Configurations.props file was modified to have $(NetCoreAppCurrent)-Linux and $(NetCoreAppCurrent)-OSX instead of $(NetCoreAppCurrent)-Unix in a recent PR #427, but the Configurations in the System.Net.Quic.csproj were not updated accordingly. --- src/libraries/System.Net.Quic/src/System.Net.Quic.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Net.Quic/src/System.Net.Quic.csproj b/src/libraries/System.Net.Quic/src/System.Net.Quic.csproj index b262b41bece..6381f1220ed 100644 --- a/src/libraries/System.Net.Quic/src/System.Net.Quic.csproj +++ b/src/libraries/System.Net.Quic/src/System.Net.Quic.csproj @@ -2,7 +2,7 @@ System.Net.Quic true - $(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release + $(NetCoreAppCurrent)-Linux-Debug;$(NetCoreAppCurrent)-Linux-Release;$(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release false -- GitLab