Skip to content

Commit

Permalink
Do not add Compile tags for packages when we use new project format - f…
Browse files Browse the repository at this point in the history
…ixes #3269
  • Loading branch information
forki committed Jul 4, 2018
1 parent f6c4511 commit 4f40b2f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Paket.Core/Installation/InstallProcess.fs
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,12 @@ let InstallIntoProjects(options : InstallerOptions, forceTouch, dependenciesFile
createRelativePath project.FileName targetFile.FullName
Link = None }
) |> Seq.toList

processContentFiles root project usedPackages gitRemoteItems options

if toolsVersion >= 15.0 then
processContentFiles root project Map.empty gitRemoteItems options
else
processContentFiles root project usedPackages gitRemoteItems options

project.Save forceTouch
projectCache.[project.FileName] <- Some project

Expand Down

0 comments on commit 4f40b2f

Please sign in to comment.