Paket icon indicating copy to clipboard operation
Paket copied to clipboard

Control the path separator in fsproj file

Open nojaf opened this issue 4 years ago • 0 comments

Description

We are currently using Paket in a team where there is a mix of OS'es. In our fsproj, we settled that we would use / instead of \ for all paths. Each time we install a new package via dotnet paket install, all our fsproj files are updated and the / is changed to \.

image

Repro steps

Normal usage of paket. Even when starting from scratch on Linux the Import will contains \.

dotnet new classlib -lang F# -n paket-test
cd paket-test
dotnet tool install paket
dotnet paket convert-from-nuget

Expected behavior

It would be nice if there was a way to control the path separator.

Actual behavior

Paket always seems to use \.

Known workarounds

Fixing this manually after each install.

nojaf avatar Sep 16 '21 09:09 nojaf