dotnet: disable restore in test project creation

This commit is contained in:
David McFarland 2024-09-21 15:05:39 -03:00
parent 2c97d67f62
commit 3fb0ab6f59

View File

@ -86,7 +86,7 @@ stdenv.mkDerivation (
unpackPhase = ''
mkdir test
cd test
dotnet new ${template} -o .
dotnet new ${template} -o . --no-restore
'';
buildPhase = build;
dontPatchELF = true;