Profiling .net application on Mac?

I can run the application like:

dotnet myapp.dll

But how can I execute time or memory profiling on it? In visual studio, for publishing to the Mac community, the profile option is not displayed in the run menu (corporate required).

I'm basically looking for an equivalent mono --profile=login .net core 2.0

+4
source share
1 answer

Profiler API is already implemented in the .NET Core environment and is available on all major platforms: Windows, Linux, macOS. However, it has been fully tested only on Windows and Linux. Devs recommends a profile on macOS with a grain of salt and set up some validation tests.

Microsoft Xamarin macOS. Visual Studio Enterprise macOS - 30- .

API.NET Core Profiling Microsoft Clr Samples - ProfilingAPI - ReJITEnterLeaveHooks . . CoreCLR GitHub # 14786 .Net Core

macOS.NET Core.

+3

Source: https://habr.com/ru/post/1688708/


All Articles