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
Copy file name to clipboardExpand all lines: docs/content/local-file.md
+9
Original file line number
Diff line number
Diff line change
@@ -85,11 +85,20 @@ Format of git source is the same as used in `paket.dependencies` for specifying
85
85
86
86
[lang=paket]
87
87
nuget Fake -> source c:\github\FAKE\bin
88
+
89
+
// Argu is searched in specific version
90
+
nuget Argu -> source C:\github\Argu\bin version 0.0.0
88
91
89
92
The Format of the source is the same as in [path sources](nuget-dependencies.html#Path-sources).
90
93
91
94
> Note: In case of source override, `paket restore` assumes the NuGet package **already exists** in pointed directory - no build is going to be triggered.
92
95
96
+
### Nupkg version
97
+
98
+
If you happen to have a nupkg in local path, but with a different version than in `paket.lock`, you can optionally specify version which should be used for this override.
99
+
One use case might be when the package version is determined by your build server, and nupkgs created locally have zero version.
100
+
This is currently supported only for [Source override](#Source-override).
0 commit comments