dotnet core build in parallel or simultaneously dotnet core build in parallel or simultaneously powershell powershell

dotnet core build in parallel or simultaneously


Explanation for error CS2012 :The process cannot access the file

I could reproduce your issue and Process Monitor indicates that both processes open shared.dll at the same time for reading. This leads to the issue you described.

Although reading the same file from different processes can be done by using FileShare.Read as the documentation indicates (see excerpt below), it seems that this is NOT done by csc.exe. This is a shortcoming of csc.exe, which probably won't be changed in the near future.

Allows subsequent opening of the file for reading. If this flag is not specified, any request to open the file for reading (by this process or another process) will fail until the file is closed. However, even if this flag is specified, additional permissions might still be needed to access the file.

Solution

Instead of using Start-Process to achieve parallel building, you could use msbuild, which supports this out of the box.

Parallel build is supported by msbuild with /maxcpucount-switch and BuildInParallel-task parameter as described in MS build documentation.

Parallel build is enabled by using /maxcpucount-switch on commandline:

dotnet msbuild .\ParallelBuildAB.csproj /target:build /restore:false /maxcpucount:2

In addition it is also necessary to use BuildInParallel-task Parameter in project-file ParallelBuildAB.csproj. Please note that AppA.csproj and AppB.csproj are referenced:

<?xml version="1.0"?><Project name="system" default="build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">    <Target Name="build">        <MSBuild BuildInParallel="true" Projects="./AppA/AppA.csproj;./AppB/AppB.csproj" Targets="Build"/>    </Target></Project>