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
Want to keep all my dependence (package folder) in root folder only. used paket.references to achieve, but getting FileNotFoundException: Could not find file '..\script\paket.dependencies error.
Repro steps
I have folder structure as specified below.
src
--> script
--> build.fsx
--> fake.cmd
--> paket.references
--> svc
--> packages
--> paket.dependencies
the script folder will have F# Make script. in that i have refer my group packet. the code snap given below
#r "paket: groupref build //"
when i try to run my script getting below error
There was a problem while setting up the environment:
-> FileNotFoundException: Could not find file '..\script\paket.dependencies'.
Expected behavior
All my dependence should be in root folder only (package folder). the script should run with all it dependence .
Actual behavior
Getting FileNotFoundException: Could not find file '..\script\paket.dependencies error.
Known workarounds
we can reference the components by Absolute Path.
need a document or reference how i can use Absolute Path.
Description
Want to keep all my dependence (package folder) in root folder only. used paket.references to achieve, but getting FileNotFoundException: Could not find file '..\script\paket.dependencies error.
Repro steps
I have folder structure as specified below.
src
--> script
--> build.fsx
--> fake.cmd
--> paket.references
--> svc
--> packages
--> paket.dependencies
the script folder will have F# Make script. in that i have refer my group packet. the code snap given below
#r "paket: groupref build //"
My paket.references will look like this
// [ FAKE GROUP ] group Build source https://api.nuget.org/v3/index.json nuget Fake.Core.Target
when i try to run my script getting below error
There was a problem while setting up the environment:
-> FileNotFoundException: Could not find file '..\script\paket.dependencies'.
Expected behavior
All my dependence should be in root folder only (package folder). the script should run with all it dependence .
Actual behavior
Getting FileNotFoundException: Could not find file '..\script\paket.dependencies error.
Known workarounds
we can reference the components by Absolute Path.
need a document or reference how i can use Absolute Path.
Sample code available here
The text was updated successfully, but these errors were encountered: