Is there a way to disable the globe with the new .NET SDK design system?

I'm having performance issues with the new .NET SDK design system. Globe pattern resolution performed by MSBuild is too slow for my catalog layout and freezes very often in Visual Studio.

Is there a way to disable the globbing system or is it possible to use ASP.NET Core with the old project system?

+3


source to share


1 answer


You can disable most of the globes with this property.

<PropertyGroup>
  <EnableDefaultItems>false</EnableDefaultItems>
</PropertyGroup>

      



See https://docs.microsoft.com/en-us/dotnet/core/tools/csproj#default-compilation-includes-in-net-core-projects and https://aka.ms/sdkimplicititems for more details information

+3


source







All Articles