I have a .net core 2 project where I want to run another .net core 2 project in the pre-build events.
All my previous projects were developed using framework 4.x, which upon building generated .exe files. This .net core does not. How can I achieve the same result as the old code from my previous projects:
$(MSBuildProjectDirectory)\..\MyProjectName\bin\$(Configuration)\MyProjectName.exe
Thank you in advance !