You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with #3756 and #3064 it is quite clear, that the documentation around adding git repositories as a (usable) dependency isn't all that clear. Which is a pity, because the actual process isn't all that hard and also quite sensible-ish.
This change aims to slightly improve the docs and shed some light on this topic because - basically - all that is missing is some basic knowledge about how namespace/package resolution works in fsharp.
NOTE: this assumes that the name of the package is `Argu` which can't be inferred in this case since no `*.fsproj` or `.sln` file is present in the example repository
110
+
111
+
### Arbitrary build scripts
98
112
99
113
```paket
100
114
git https://github.com/forki/nupkgtest.git master build: "build.cmd", Packages: /source/, OS: windows
In this sample we have different build scripts for Mono and Windows.
120
+
In this sample we have different build scripts for Mono and Windows. Both of the specified scripts simply cody the prebuilt nupkgs from `/bin` to `/source`
121
+
122
+
### Actually using the package
123
+
124
+
Don't forget to also add your dependency to the `paket.references` file.
0 commit comments