From ba87a293f9dd4121a063cecb61aec39e57a0c0e4 Mon Sep 17 00:00:00 2001 From: "Chris Ross (ASP.NET)" Date: Mon, 2 Apr 2018 09:46:21 -0700 Subject: [PATCH] Remove obsolete workaround --- .../Program.cs | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 test/Microsoft.AspNetCore.WebSockets.Test/Program.cs diff --git a/test/Microsoft.AspNetCore.WebSockets.Test/Program.cs b/test/Microsoft.AspNetCore.WebSockets.Test/Program.cs deleted file mode 100644 index 7f9f5d0035..0000000000 --- a/test/Microsoft.AspNetCore.WebSockets.Test/Program.cs +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -#if NET461 -using System; - -namespace Microsoft.AspNetCore.WebSockets.Test -{ - public class Program - { - public static void Main(string[] args) - { - Console.WriteLine("This Program.Main is only here to work around https://github.com/dotnet/sdk/issues/909"); - } - } -} -#elif NETCOREAPP2_0 || NETCOREAPP2_1 -#else -#error Target frameworks need to be updated -#endif