diff --git a/build/TargetFramework.props b/build/TargetFramework.props index ca28c4c38..2bfa25b66 100644 --- a/build/TargetFramework.props +++ b/build/TargetFramework.props @@ -1,7 +1,9 @@ netcoreapp3.0 - + + 3.0 diff --git a/test/EndToEnd/GivenDotNetUsesMSBuild.cs b/test/EndToEnd/GivenDotNetUsesMSBuild.cs index 2aeabc9d4..2b05328f6 100644 --- a/test/EndToEnd/GivenDotNetUsesMSBuild.cs +++ b/test/EndToEnd/GivenDotNetUsesMSBuild.cs @@ -30,6 +30,7 @@ namespace Microsoft.DotNet.Tests.EndToEnd string projectPath = Directory.GetFiles(projectDirectory, "*.csproj").Single(); // Override TargetFramework since there aren't .NET Core 3 templates yet + // https://github.com/dotnet/core-sdk/issues/24 tracks removing this workaround XDocument project = XDocument.Load(projectPath); var ns = project.Root.Name.Namespace; project.Root.Element(ns + "PropertyGroup")