buildDotnetModule: make docs more clear on how to generate nugetDeps for the first time

This commit is contained in:
mdarocha 2023-09-30 13:21:36 +02:00
parent 8318df5b63
commit f1cc116e3d

View File

@ -138,7 +138,9 @@ in buildDotnetModule rec {
src = ./.;
projectFile = "src/project.sln";
nugetDeps = ./deps.nix; # File generated with `nix-build -A package.passthru.fetch-deps`.
# File generated with `nix-build -A package.passthru.fetch-deps`.
# To run fetch-deps when this file does not yet exist, set nugetDeps to null
nugetDeps = ./deps.nix;
projectReferences = [ referencedProject ]; # `referencedProject` must contain `nupkg` in the folder structure.