Changed target framework in project upgrader from netstandard2.0 to netcoreapp2.0.

This commit is contained in:
José Pedro 2018-03-16 17:56:42 +00:00
parent e106b44ea7
commit bb1d0ccf57
No known key found for this signature in database
GPG key ID: B8247B9301707B83

View file

@ -237,7 +237,7 @@ namespace Cosmos.VS.ProjectSystem
foreach(var targetFrameworkProperty in properties.Where(
p => XNameEqualsString(p.Name, TargetFramework)))
{
targetFrameworkProperty.Value = "netstandard2.0";
targetFrameworkProperty.Value = "netcoreapp2.0";
}
properties.Where(p => XNameEqualsString(p.Name, ProjectGuid)).Remove();