You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
#if NETCOREAPP5_0
#endif
to
#if NET5_0
#endif
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 ?
The text was updated successfully, but these errors were encountered:
Hello,
After installing
dotnet-sdk 5.0.0-preview3
, changedTargetFramework
fromnetcoreapp5.0
tonet5.0
, i also tried to change macro relying on existingDefineConstant
from#if NETCOREAPP5_0 #endif
to
#if NET5_0 #endif
It seems that it's still
NETCOREAPP5_0
and notNET5_0
Is this intended to still use
NETCOREAPP5_0
while theTargetFramework
just moved out ?The text was updated successfully, but these errors were encountered: