at 23.05-pre 133 lines 8.7 kB view raw view rendered
1# Dotnet {#dotnet} 2 3## Local Development Workflow {#local-development-workflow} 4 5For local development, it's recommended to use nix-shell to create a dotnet environment: 6 7```nix 8# shell.nix 9with import <nixpkgs> {}; 10 11mkShell { 12 name = "dotnet-env"; 13 packages = [ 14 dotnet-sdk_3 15 ]; 16} 17``` 18 19### Using many sdks in a workflow {#using-many-sdks-in-a-workflow} 20 21It's very likely that more than one sdk will be needed on a given project. Dotnet provides several different frameworks (E.g dotnetcore, aspnetcore, etc.) as well as many versions for a given framework. Normally, dotnet is able to fetch a framework and install it relative to the executable. However, this would mean writing to the nix store in nixpkgs, which is read-only. To support the many-sdk use case, one can compose an environment using `dotnetCorePackages.combinePackages`: 22 23```nix 24with import <nixpkgs> {}; 25 26mkShell { 27 name = "dotnet-env"; 28 packages = [ 29 (with dotnetCorePackages; combinePackages [ 30 sdk_3_1 31 sdk_5_0 32 ]) 33 ]; 34} 35``` 36 37This will produce a dotnet installation that has the dotnet 3.1, 3.0, and 2.1 sdk. The first sdk listed will have it's cli utility present in the resulting environment. Example info output: 38 39```ShellSession 40$ dotnet --info 41.NET Core SDK (reflecting any global.json): 42 Version: 3.1.101 43 Commit: b377529961 44 45... 46 47.NET Core SDKs installed: 48 2.1.803 [/nix/store/iiv98i2jdi226dgh4jzkkj2ww7f8jgpd-dotnet-core-combined/sdk] 49 3.0.102 [/nix/store/iiv98i2jdi226dgh4jzkkj2ww7f8jgpd-dotnet-core-combined/sdk] 50 3.1.101 [/nix/store/iiv98i2jdi226dgh4jzkkj2ww7f8jgpd-dotnet-core-combined/sdk] 51 52.NET Core runtimes installed: 53 Microsoft.AspNetCore.All 2.1.15 [/nix/store/iiv98i2jdi226dgh4jzkkj2ww7f8jgpd-dotnet-core-combined/shared/Microsoft.AspNetCore.All] 54 Microsoft.AspNetCore.App 2.1.15 [/nix/store/iiv98i2jdi226dgh4jzkkj2ww7f8jgpd-dotnet-core-combined/shared/Microsoft.AspNetCore.App] 55 Microsoft.AspNetCore.App 3.0.2 [/nix/store/iiv98i2jdi226dgh4jzkkj2ww7f8jgpd-dotnet-core-combined/shared/Microsoft.AspNetCore.App] 56 Microsoft.AspNetCore.App 3.1.1 [/nix/store/iiv98i2jdi226dgh4jzkkj2ww7f8jgpd-dotnet-core-combined/shared/Microsoft.AspNetCore.App] 57 Microsoft.NETCore.App 2.1.15 [/nix/store/iiv98i2jdi226dgh4jzkkj2ww7f8jgpd-dotnet-core-combined/shared/Microsoft.NETCore.App] 58 Microsoft.NETCore.App 3.0.2 [/nix/store/iiv98i2jdi226dgh4jzkkj2ww7f8jgpd-dotnet-core-combined/shared/Microsoft.NETCore.App] 59 Microsoft.NETCore.App 3.1.1 [/nix/store/iiv98i2jdi226dgh4jzkkj2ww7f8jgpd-dotnet-core-combined/shared/Microsoft.NETCore.App] 60``` 61 62## dotnet-sdk vs dotnetCorePackages.sdk {#dotnet-sdk-vs-dotnetcorepackages.sdk} 63 64The `dotnetCorePackages.sdk_X_Y` is preferred over the old dotnet-sdk as both major and minor version are very important for a dotnet environment. If a given minor version isn't present (or was changed), then this will likely break your ability to build a project. 65 66## dotnetCorePackages.sdk vs dotnetCorePackages.runtime vs dotnetCorePackages.aspnetcore {#dotnetcorepackages.sdk-vs-dotnetcorepackages.runtime-vs-dotnetcorepackages.aspnetcore} 67 68The `dotnetCorePackages.sdk` contains both a runtime and the full sdk of a given version. The `runtime` and `aspnetcore` packages are meant to serve as minimal runtimes to deploy alongside already built applications. 69 70## Packaging a Dotnet Application {#packaging-a-dotnet-application} 71 72To package Dotnet applications, you can use `buildDotnetModule`. This has similar arguments to `stdenv.mkDerivation`, with the following additions: 73 74* `projectFile` is used for specifying the dotnet project file, relative to the source root. These usually have `.sln` or `.csproj` file extensions. This can be a list of multiple projects as well. Most of the time dotnet can figure this location out by itself, so this should only be set if necessary. 75* `nugetDeps` takes either a path to a `deps.nix` file, or a derivation. The `deps.nix` file can be generated using the script attached to `passthru.fetch-deps`. This file can also be generated manually using `nuget-to-nix` tool, which is available in nixpkgs. If the argument is a derivation, it will be used directly and assume it has the same output as `mkNugetDeps`. 76* `packNupkg` is used to pack project as a `nupkg`, and installs it to `$out/share`. If set to `true`, the derivation can be used as a dependency for another dotnet project by adding it to `projectReferences`. 77* `projectReferences` can be used to resolve `ProjectReference` project items. Referenced projects can be packed with `buildDotnetModule` by setting the `packNupkg = true` attribute and passing a list of derivations to `projectReferences`. Since we are sharing referenced projects as NuGets they must be added to csproj/fsproj files as `PackageReference` as well. 78 For example, your project has a local dependency: 79 ```xml 80 <ProjectReference Include="../foo/bar.fsproj" /> 81 ``` 82 To enable discovery through `projectReferences` you would need to add: 83 ```xml 84 <ProjectReference Include="../foo/bar.fsproj" /> 85 <PackageReference Include="bar" Version="*" Condition=" '$(ContinuousIntegrationBuild)'=='true' "/> 86 ``` 87* `executables` is used to specify which executables get wrapped to `$out/bin`, relative to `$out/lib/$pname`. If this is unset, all executables generated will get installed. If you do not want to install any, set this to `[]`. This gets done in the `preFixup` phase. 88* `runtimeDeps` is used to wrap libraries into `LD_LIBRARY_PATH`. This is how dotnet usually handles runtime dependencies. 89* `buildType` is used to change the type of build. Possible values are `Release`, `Debug`, etc. By default, this is set to `Release`. 90* `selfContainedBuild` allows to enable the [self-contained](https://docs.microsoft.com/en-us/dotnet/core/deploying/#publish-self-contained) build flag. By default, it is set to false and generated applications have a dependency on the selected dotnet runtime. If enabled, the dotnet runtime is bundled into the executable and the built app has no dependency on Dotnet. 91* `dotnet-sdk` is useful in cases where you need to change what dotnet SDK is being used. 92* `dotnet-runtime` is useful in cases where you need to change what dotnet runtime is being used. This can be either a regular dotnet runtime, or an aspnetcore. 93* `dotnet-test-sdk` is useful in cases where unit tests expect a different dotnet SDK. By default, this is set to the `dotnet-sdk` attribute. 94* `testProjectFile` is useful in cases where the regular project file does not contain the unit tests. It gets restored and build, but not installed. You may need to regenerate your nuget lockfile after setting this. 95* `disabledTests` is used to disable running specific unit tests. This gets passed as: `dotnet test --filter "FullyQualifiedName!={}"`, to ensure compatibility with all unit test frameworks. 96* `dotnetRestoreFlags` can be used to pass flags to `dotnet restore`. 97* `dotnetBuildFlags` can be used to pass flags to `dotnet build`. 98* `dotnetTestFlags` can be used to pass flags to `dotnet test`. Used only if `doCheck` is set to `true`. 99* `dotnetInstallFlags` can be used to pass flags to `dotnet install`. 100* `dotnetPackFlags` can be used to pass flags to `dotnet pack`. Used only if `packNupkg` is set to `true`. 101* `dotnetFlags` can be used to pass flags to all of the above phases. 102 103When packaging a new application, you need to fetch its dependencies. You can run `nix-build -A package.fetch-deps` to generate a script that will build a lockfile for you. After running the script you should have the location of the generated lockfile printed to the console, which can be copied to a stable directory. Then set `nugetDeps = ./deps.nix` and you're ready to build the derivation. 104 105Here is an example `default.nix`, using some of the previously discussed arguments: 106```nix 107{ lib, buildDotnetModule, dotnetCorePackages, ffmpeg }: 108 109let 110 referencedProject = import ../../bar { ... }; 111in buildDotnetModule rec { 112 pname = "someDotnetApplication"; 113 version = "0.1"; 114 115 src = ./.; 116 117 projectFile = "src/project.sln"; 118 nugetDeps = ./deps.nix; # File generated with `nix-build -A package.passthru.fetch-deps`. 119 120 projectReferences = [ referencedProject ]; # `referencedProject` must contain `nupkg` in the folder structure. 121 122 dotnet-sdk = dotnetCorePackages.sdk_3_1; 123 dotnet-runtime = dotnetCorePackages.net_5_0; 124 dotnetFlags = [ "--runtime linux-x64" ]; 125 126 executables = [ "foo" ]; # This wraps "$out/lib/$pname/foo" to `$out/bin/foo`. 127 executables = []; # Don't install any executables. 128 129 packNupkg = true; # This packs the project as "foo-0.1.nupkg" at `$out/share`. 130 131 runtimeDeps = [ ffmpeg ]; # This will wrap ffmpeg's library path into `LD_LIBRARY_PATH`. 132} 133```