Hi,
(F#
, .Net and Windows newbie) …
I’m trying to create new project using the following commands:
dotnet new sln -n TestMe
dotnet new console -lang 'F#' -o SqlTP
dotnet sln add .\SqlTP\SqlTP.fsproj
dotnet new tool-manifest
dotnet tool install paket
dotnet tool restore
dotnet paket init
dotnet paket add FParsec --version 1.1.1 --interactive # I answer Y at the interactive prompt
These commands generates the paket.references
in the project directory and all seems well except for the fact that the project does not see the dependency . It does not appear in the package references in VSCode and I can’t use the library.
I tried it using dotnet 5.0.x and 3.1.xxx and got the same result. The thing is that I think I created test project in the past following similar procedure and it worked. Not sure what’s wrong …
You can see the generated projects (both dotnet 3 and 5) of the procedure above (with different dependencies) in this repository.
Please help
Thanks in advance
Haim