entity framework - CI and MSBuild adding EntityFramework -


(i still beginner stuff) implementing ci jenkins builds using msbuild. pulling code , building visual studio works, when pull repo (bitbucket) these sort of errors:

c:\program files (x86)\msbuild\14.0\bin\microsoft.common.currentversion.targets(1820,5): warning msb3245: not resolve reference. not locate assembly "entityframework, version=6.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil". check make sure assembly exists on disk. if reference required code, may compilation errors. [c:\users\bob.jenkins\workspace\sift\source\sift.model\sift.model.csproj]

and because of these sort of errors

domain\incident.cs(5,19): error cs0234: type or namespace name 'entity' not exist in namespace 'system.data' (are missing assembly reference?) [c:\users\bob.jenkins\workspace\sift\source\sift.model\sift.model.csproj]

now know has repo not allowing dll or other kinds of files (we don't want because messes other peoples builds). , don't want copy paste or download onto ci server because defeat our purpose of checking build. question is, there anyway jenkins or msbuild somehow grab , install entityframework online no errors when builds? saw visual studio doing looks likes uses npm , nuget.


Comments

Popular posts from this blog

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -