c# - ASP.Net: missing references -
i'm new asp.net. have access existing solution. when opened in studio, of projects seems missing references. example, 1 of projects seems missing nunit.framework
. looked @ .csproj
file , saw this:
<reference include="nunit.framework, version=2.4.3.0, culture=neutral, publickeytoken=96d09a1eb7f44a77, processorarchitecture=msil"> <specificversion>false</specificversion> <hintpath>..\..\references\nunit.framework.dll</hintpath> </reference>
i'm guessing machine doesn't have dll?
i tried right clicking references
folder, add reference
, looked nunit
under assemblies
. nothing found. system missing this? if so, how it?
other missing references: system.web.extensions
, microsoft.practices.enterpriselibrary.data
.
nunit unit-testing framework. can download here, @ point you'll have it. or presumably remove it, , remove whatever unit-testing code had been written in project, if needed compile right yourself. (it's idea isolate unit testing code own project, project has reference testing framework's dll(s), presumably not done in case - if was solely test project, unload project if didn't need run tests.
Comments
Post a Comment