Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not load file or assembly System.EnterpriseServices

Tags:

asp.net

I'm trying to read up on asp.net mvc, I have never used asp.net before but are familiar with regular c# development.

Freshly installed, fully patched Windows XP Home.
Freshly installed updated to SP1 Visual Studio 2008 Pro.

Started a new project, selected "ASP.NET MVC Web Application", target framework is 3.5

I hit F5 and I get:
"Could not load file or assembly System.EnterpriseServices"

Exact wording in swedish:

[FileNotFoundException: Det går inte att hitta filen. (Undantag från HRESULT: 0x80070002)]
[FileNotFoundException: Det går inte att läsa in filen eller sammansättningen System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a eller ett av dess beroenden. Det går inte att hitta filen.]

Adding a reference to System.EnterpriseServices in my project did not work.
A quick google suggested I copy this file Microsoft.NET/Framework/v2.0.50727/System.EnterpriseServices.dll into %WINDOWS%/assembly but that did not work either.

Any suggestions?

Found the answer, I added it to the GAC with gacutil.

C:\WINDOWS>"C:\Program\Microsoft SDKs\Windows\v6.0A\bin\gacutil.exe" /i Microsoft.NET/Framework/v2.0.50727/System.EnterpriseServices.dll

like image 972
Nifle Avatar asked Mar 01 '23 16:03

Nifle


1 Answers

Found the answer, I added it to the GAC with gacutil.

C:\WINDOWS>"C:\Program\Microsoft SDKs\Windows\v6.0A\bin\gacutil.exe" /i Microsoft.NET/Framework/v2.0.50727/System.EnterpriseServices.dll

like image 197
Nifle Avatar answered Mar 12 '23 00:03

Nifle