We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 80d1c2c + 22ce9a3 commit e9bb0b5Copy full SHA for e9bb0b5
src/Paket.Core/PaketConfigFiles/ProjectFile.fs
@@ -1656,7 +1656,10 @@ module ProjectFile =
1656
if String.IsNullOrWhiteSpace buildPlatform && attempted <> [] then
1657
let tested = String.Join(", ", attempted)
1658
traceWarnfn "No platform specified; found output path node for the %s platform after failing to find one for the following: %s" x tested
1659
- Path.Combine(s.TrimEnd [|'\\'|] , targetFramework) |> normalizePath
+ if (appendTargetFrameworkToOutputPath project) then
1660
+ Path.Combine(s.TrimEnd [|'\\'|] , targetFramework) |> normalizePath
1661
+ else
1662
+ s.TrimEnd [|'\\'|] |> normalizePath
1663
1664
tryNextPlat platforms []
1665
0 commit comments