A small C++ library for implementing CLR profilers.
From Visual Studio 2015:
- Open
simply.clr.profiler.sln
- Select Build Solution from the Build menu
- To switch build between
x86
andx64
platforms, select Configuration Manager from the Build menu and change the Active Solution Configuration
From Developer Command Prompt for VS2015:
msbuild simply.clr.profiler.sln /p:Platform=x86
msbuild simply.clr.profiler.sln /p:Platform=x64
From Visual Studio 2015:
- Select Run / All Tests from the Test menu
- To switch test execution between
x86
andx64
platform, select Test Settings from the Test menu and change the Default Processor Architecture.
From Developer Command Prompt for VS2015:
vstest.console bin\debug\Win32\test.dll /Platform:x86
vstest.console bin\debug\x64\test.dll /Platform:x64 /inIsolation