running dot net publish with multiple threads (compiling dotnet core in multiple threads)
I want to change the script (Powershell) of the deployment from synchronous to asynchronous. One of the main operations of the deployment is the compilation of the dotnet core projects.
I wrote a short Powershell script to see if I can run `dotnet publish` on multiple threads (compiling multiple projects at once), and I wanted to see if something is different from compiling synchronously.
I saw a huge difference in the size of the files, so I can't compile with dotnet publish multiple projects at once? Or perhaps I did a mistake (pretty sure I didn't)?
How can I compile multiple dotnet core projects at once?
0 comments:
Post a Comment