jmrog / vscode-nuget-package-manager

An extension for Visual Studio Code that lets you easily add or remove .NET Core 1.1+ package references to/from your project's .csproj file using Code's Command Palette.
MIT License
34 stars 17 forks source link

Add support for fsproj files #14

Closed derwasp closed 7 years ago

derwasp commented 7 years ago

Even though paket is a standard for f# project, nuget can also be used

jmrog commented 7 years ago

Good idea. I've never used fsproj files before, but my understanding is that their format is the same as csproj files. Is that correct?

derwasp commented 7 years ago

@jmrog yes, it's the same msbuild format. You can check it out dotnet new with -lang f# flag. e.g. dotnet new xunit -lang f#

derwasp commented 7 years ago

Great, thank you!

jmrog commented 7 years ago

No problem! I just released it but then rolled it back real quickly, as I spotted an unrelated bug. I'll be releasing a version with the fix in just a minute.

jmrog commented 7 years ago

All right, released with fix now. It should work with .fsproj files in the same way as it does with .csproj files! Thanks!