Skip to content

Commit

Permalink
Remmi Demmi! - Framework restriction could not be determined during r…
Browse files Browse the repository at this point in the history
…estore, so just ignore those error messages
  • Loading branch information
dnauck committed Sep 18, 2016
1 parent 21e1914 commit d96b3c6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/Paket.Core/RestoreProcess.fs
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,13 @@ let Restore(dependenciesFileName,force,group,referencesFileNames,ignoreChecks) =
LocalFile.overrideLockFile localFile lockFile,localFile,true

if not hasLocalFile && not ignoreChecks then
let hasAnyChanges,_,_,_ = DependencyChangeDetection.GetChanges(dependenciesFile,lockFile,false)
try
let hasAnyChanges,_,_,_ = DependencyChangeDetection.GetChanges(dependenciesFile,lockFile,false)

if hasAnyChanges then
traceWarnfn "paket.dependencies and paket.lock are out of sync in %s.%sPlease run 'paket install' or 'paket update' to recompute the paket.lock file." lockFileName.Directory.FullName Environment.NewLine
if hasAnyChanges then
traceWarnfn "paket.dependencies and paket.lock are out of sync in %s.%sPlease run 'paket install' or 'paket update' to recompute the paket.lock file." lockFileName.Directory.FullName Environment.NewLine
with
| _ -> ()

let groups =
match group with
Expand Down

0 comments on commit d96b3c6

Please sign in to comment.