Visual studio 2013 yellow warning on all references in project -


i have c# project target framework set .net 4.5. strange reason, references marked yellow warning triangle shown below. have tried unloading , reloading project. tried manually re-adding 1 of system references no avail.

enter image description here

the warnings are:

warning 13 referenced component 'automapper' not found. services.contracts warning 14 referenced component 'automapper.net4' not found. services.contracts warning 15 referenced component 'log4net' not found. services.contracts warning 16 referenced component 'mindscape.lightspeed' not found. services.contracts warning 17 referenced component 'mindscape.lightspeed.linq' not found. services.contracts warning 18 referenced component 'system' not found. services.contracts warning 19 referenced component 'system.core' not found. services.contracts warning 25 referenced component 'system.data' not found. services.contracts warning 24 referenced component 'system.data.datasetextensions' not found. services.contracts warning 20 referenced component 'system.runtime.serialization' not found. services.contracts warning 21 referenced component 'system.servicemodel' not found. services.contracts warning 22 referenced component 'system.servicemodel.web' not found. services.contracts warning 26 referenced component 'system.xml' not found. services.contracts warning 23 referenced component 'system.xml.linq' not found. services.contracts

what happened , how fix this?

i had same problem , removed following entry .csproj file , fixed problem me.

<target name="ensurenugetpackagebuildimports" beforetargets="prepareforbuild">   <propertygroup>   <errortext>this project references nuget package(s) missing on computer. enable nuget package restore download them.  more information, see http://go.microsoft.com/fwlink/?linkid=322105. missing file {0}.</errortext> </propertygroup> <error condition="!exists('$(solutiondir)\.nuget\nuget.targets')" text="$([system.string]::format('$(errortext)', '$(solutiondir)\.nuget\nuget.targets'))" /></target> 

Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -