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