Hello,
After installing dotnet-sdk 5.0.0-preview3, changed TargetFramework from netcoreapp5.0 to net5.0, i also tried to change macro relying on existing DefineConstant from
to
It seems that it's still NETCOREAPP5_0 and not NET5_0
Is this intended to still use NETCOREAPP5_0 while the TargetFramework just moved out ?
Hello,
After installing
dotnet-sdk 5.0.0-preview3, changedTargetFrameworkfromnetcoreapp5.0tonet5.0, i also tried to change macro relying on existingDefineConstantfrom#if NETCOREAPP5_0 #endifto
#if NET5_0 #endifIt seems that it's still
NETCOREAPP5_0and notNET5_0Is this intended to still use
NETCOREAPP5_0while theTargetFrameworkjust moved out ?