Friday, March 29, 2019

TFS / Nuget - Cannot build after getting latest from Source Controll

In nuget console run:

Remove the current references in project/s.

update-package -reinstall
PM> Update-Package -reinstall

also try:
PM> Get-Project –All | Add-BindingRedirect

Friday, March 15, 2019

500.19 - Http Server error

  1. Check permissions on the APP Pool User.
  2. And that the IIS Rewrite Module is installed.
  3. Also check that in add remove windows feature that the:
  4. IIS / World wide web Services / Application Development Features is checked especially aps.net 4.7

Saturday, March 9, 2019

Nuget - Nuget adds broken References without path.

I did already try Update-Package -reinstall. But this did not help.
I also removed all references manually and empied the package folder without results.

The solution:
Clear the nuget cache (don't know if this was necessary). Under tools -> Nuget Package Manager -> Nuget Settings and Clear cache.

Unload proj from solution
Edit csproj file and delete nuggets entries from csproj file (ItemGroup).
Reload proj
It works!!