From 2abc6a91ca16dea63bade649b313e0f59305975c Mon Sep 17 00:00:00 2001 From: Atif Aziz Date: Sun, 27 Dec 2020 15:38:06 +0100 Subject: [PATCH] Disable parallel building due to T4 for simplicity --- MoreLinq/MoreLinq.csproj | 7 +++---- build.cmd | 1 - build.sh | 1 - 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/MoreLinq/MoreLinq.csproj b/MoreLinq/MoreLinq.csproj index acaa93874..b43179b00 100644 --- a/MoreLinq/MoreLinq.csproj +++ b/MoreLinq/MoreLinq.csproj @@ -123,6 +123,9 @@ 9 enable true + + false portable true MoreLinq @@ -263,10 +266,6 @@ - - diff --git a/build.cmd b/build.cmd index 6f47fd666..08e0f43bf 100644 --- a/build.cmd +++ b/build.cmd @@ -13,7 +13,6 @@ if "%1"=="docs" shift & goto :docs dotnet restore && dotnet tool restore ^ && call :codegen MoreLinq\Extensions.g.cs -x "[/\\]ToDataTable\.cs$" -u System.Linq -u System.Collections MoreLinq ^ && call :codegen MoreLinq\Extensions.ToDataTable.g.cs -i "[/\\]ToDataTable\.cs$" -u System.Data -u System.Linq.Expressions MoreLinq ^ - && dotnet build MoreLinq -t:TransformTextTemplates -p:BuildInParallel=false ^ && for %%i in (debug release) do dotnet build -c %%i --no-restore %* || exit /b 1 goto :EOF diff --git a/build.sh b/build.sh index e96b1eaed..1cedf8ddc 100755 --- a/build.sh +++ b/build.sh @@ -12,7 +12,6 @@ codegen() { } codegen MoreLinq/Extensions.g.cs -x "[/\\\\]ToDataTable\.cs$" -u System.Linq -u System.Collections MoreLinq codegen MoreLinq/Extensions.ToDataTable.g.cs -i "[/\\\\]ToDataTable\.cs$" -u System.Data -u System.Linq.Expressions MoreLinq -dotnet build MoreLinq -t:TransformTextTemplates -p:BuildInParallel=false if [[ -z "$1" ]]; then configs="Debug Release" else