-
I do a nuget /restore for my solution which includes c# and Intel Fortran (.fvproj) projects. Up to Version 16.8 everything was fine but after upgrading Visual Studio to 17 (and a newer Intel Fortran Version) I get MSB4075 (saying, open the project in Visual Studio and convert it to the newest version, but the project has already the newest version). Was there a change so that msbuild now can no more build (or ignore) vfproj-project-files? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Setting environment variable NUGET_RESTORE_MSBUILD_ARGS to /p:RestoreUseSkipNonexistentTargets=false before calling nuget /restore is perhaps a solution for this problem. See NuGet/Home#7796 |
Beta Was this translation helpful? Give feedback.
Setting environment variable NUGET_RESTORE_MSBUILD_ARGS to /p:RestoreUseSkipNonexistentTargets=false before calling nuget /restore is perhaps a solution for this problem. See NuGet/Home#7796