*
let
Application = import ../Application { pkgs = pkgs; };
DataMatrixGenerator = import ../../utils/DataMatrixGenerator { pkgs = pkgs; };
Infrastrcture = import ../Infrastructure { pkgs = pkgs; };
WebUI = import ../WebUI { pkgs = pkgs; };
in
pkgs.buildDotnetModule {
pname = "API.csproj";
version = "0.1";
src = ../..;
projectFile = "src/API/API.csproj";
buildInputs = \[
Application
DataMatrixGenerator
Infrastrcture
WebUI
\];
dotnetPackFlags = \[ "-p:RuntimeIdentifier=linux-x64" \];
nugetDeps = ./deps.json;
packNupkg = false;
}
|