Version Used:
.NET Core CLI 2.2.0-preview1-007870
Steps to Reproduce:
- Windows 10
- Install CLI (I used the .zip version)
git clone https://github.com/OrchardCMS/OrchardCore
cd OrchardCore
dotnet build --no-incremental
Expected Behavior:
Compilation happens inside the dotnet vbcscompiler.dll process.
Actual Behavior:
The dotnet vbcscompiler.dll process is started and stays running, but it's doesn't use any CPU. Instead, one instance of dotnet csc.dll is created for each project in the solution.
Comments
The same scenario appears to be working correctly on Ubuntu 16.04 LTS.
Version Used:
.NET Core CLI 2.2.0-preview1-007870
Steps to Reproduce:
git clone https://github.com/OrchardCMS/OrchardCorecd OrchardCoredotnet build --no-incrementalExpected Behavior:
Compilation happens inside the
dotnet vbcscompiler.dllprocess.Actual Behavior:
The
dotnet vbcscompiler.dllprocess is started and stays running, but it's doesn't use any CPU. Instead, one instance ofdotnet csc.dllis created for each project in the solution.Comments
The same scenario appears to be working correctly on Ubuntu 16.04 LTS.