Skip to main content

Posts

Showing posts with the label WinForms

What's New in .NET Core 3.0 Features?

The following changes are coming in ASP.NET Core 3.0: Default  executable : .NET Core will now build framework dependent executable by default. Build copies dependencies : dotnet build now copies NuGet dependencies for your application from the NuGet cache to the build output folder. .NET Core 3.0 adds support for C# 8.0 Local dotnet tools : While .NET Core 2.1 supported global tools, .NET Core 3.0 now has local tools. Local tools are similar to global tools but are associated with a particular location on disk. Run a local tool with the following command: dotnet tool run <your-tool-command-name> Source - https://blogs.msdn.microsoft.com/dotnet/2018/05/07/net-core-3-and-support-for-windows-desktop-applications/ Windows desktop : This is the biggest enhancements, now we can build Windows desktop applications using WPF and Windows Forms and It also support using modern controls and Fluent styling from the Windows UI XAML Library (WinUI). We ca...

What's new in .NET Core 3.0?

What's new in .NET Core 3.0? This article describes what is new in .NET Core 3.0. 1.       .NET Core 3.0 adds support for C# 8.0 2.       .NET Core will now build executables by default. This is new for applications that use a globally installed version of .NET Core. 3.       Side-by-side versions of .NET that support WinForms and WPF – This one is the biggest enhancements to support Windows desktop applications. 4.       .NET build now copies NuGet dependencies for your application from the NuGet cache to the build output folder. Previously, dependencies were only copied as part of dotnet publish. 5.       Embed .NET directly into an application 6.       Take advantage of .NET Core features 7.       Fast built-in JSON support 8.       Modern browser and modern media cont...