···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 `[]`.
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* `dotnet-sdk` is useful in cases where you need to change what dotnet SDK is being used.
···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* `dotnet-sdk` is useful in cases where you need to change what dotnet SDK is being used.
···68 "OpenTabletDriver.Tests.PluginRepositoryTest.ExpandRepositoryTarball"
69 ];
7071- postInstall = ''
72 # Give a more "*nix" name to the binaries
73 mv $out/bin/OpenTabletDriver.Console $out/bin/otd
74 mv $out/bin/OpenTabletDriver.Daemon $out/bin/otd-daemon
···68 "OpenTabletDriver.Tests.PluginRepositoryTest.ExpandRepositoryTarball"
69 ];
7071+ postFixup = ''
72 # Give a more "*nix" name to the binaries
73 mv $out/bin/OpenTabletDriver.Console $out/bin/otd
74 mv $out/bin/OpenTabletDriver.Daemon $out/bin/otd-daemon