Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
287 views
in Technique[技术] by (71.8m points)

c# - Missing Referenced Assemblies Folder for .NET 4.0

It seems that starting with .NET 3.0, Microsoft moved some common assemblies to

C:Program FilesReference AssembliesMicrosoftFrameworkxxx

in order to support their effort to split out the CLR 2.0 and CLR 4.0 GACs (having also added

C:\%windir%Microsoft.NETassembly).

However, while I have both

C:Program FilesReference AssembliesMicrosoftFrameworkxxx

and

C:Program FilesReference AssembliesMicrosoftFramework.NETFrameworkv4.0

on my development machine, the latter does not exist on a server where I just installed .NET 4.0. A WCF project being deployed there references some common DLLs from this folder and cannot find them.

What am I doing wrong? Should I change these references to the new 4.0 GAC explicitly? Why does this folder not exist on the server?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Reference Assemblies folder is used with Visual Studio. While the actual deployed application will use the GAC in c:WindowsMicrosoft.NetAssembly. I am assuming you didn't install Visual Studio on your server, therefore you wouldn't have the Reference Assemblies Folder.

If you hosting WCF on the server, you need to ensure you installed .NET 4.0 Full Framework and not just the client framework.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...