0

I have added recent enterprise library using nuget package manager but still getting below error while deploying (not while building).

Package manager: Install-Package EnterpriseLibrary.Data

Can anyone help me

The type or namespace name 'Practices' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)

ravi
  • 417
  • 6
  • 13
  • On the machine you are deploying on. Are you shure the NuGet package is being downloaded – Scott Chamberlain Oct 07 '16 at 13:33
  • thank you guys, its was issue related to TFS/local reference issue, created seperate folder in TFS director for references and placed dll files and refered from there, Fixed issue – ravi Oct 07 '16 at 13:55

1 Answers1

1

Be sure that your project is referencing to

  • Microsoft.Practices.EnterpriseLibrary.Common
  • Microsoft.Practices.EnterpriseLibrary.Data

enter image description here

Lorenzo Grossi
  • 430
  • 1
  • 5
  • 22
  • Googling brought me here. I found my answer here without having to install the above. https://stackoverflow.com/a/47621038/2850898 – Esaith Oct 17 '19 at 14:21