Global Assembly Cache

learn more… | top users | synonyms

0
votes
1answer
36 views

How to increase the reliability of deployment?

Deploying solutions, both from within Visual Studio and a Powershell script seems really unreliable. For example, I have one package trying to deploy about 3 .dlls and on average it's taking 3 ...
0
votes
2answers
30 views

Failed to load receiver assembly, missing service recycle?

I'm activating a feature using PowerShell and every "once in a while" it fails with the error "Failed to load receiver assembly". It seems to be complaining because some service or application is ...
1
vote
2answers
33 views

How to pull SharePoint 2010 Reference assemblies for dedicated build server

I am trying to build my SP2010 projects on a clean build server. All of my project's are building fine with one exception. One Visual Web Part project fails with the following error on the build ...
2
votes
3answers
274 views

SharePoint 2010: System DLL (System.Collections.Generic) is not in the GAC - how do I add it?

I have a SharePoint project (named MyProject for this example) with an Application Page that references the namespace System.Collections.Generic. When I try to deploy the project, I get this error ...
-1
votes
2answers
115 views

Overwrite a dll in the GAC to avoid installing the whole feature

Is it possible to overwrite 1 dll in the GAC of a live server of my customer? Otherwise I need to install the whole feature. In this feature are very much webparts and other stuff.
0
votes
1answer
73 views

Register dotless css Sharepoint 2010

I am trying to get http://www.dotlesscss.org/ installed on sharepoint 2010 server for use for the whole site instead of just an application. I have installed the dll into the GAC and the bin of the ...
2
votes
1answer
808 views

How to register .Dll to GAC ?

I have only .dll file. I have assigned strong name to dll using ilasm command. I want to register it in GAC but i am getting following error: Dll Name :DDayICal.dll C:\Program Files (x86)\Microsoft ...
0
votes
1answer
88 views

WSP Builder copies dlls to solution regardless of “Copy Local” property set to False or not

I have a Custom timer job that references few custom dlls, now if I set copy local property of these dlls to false, it stills adds them and when I deploy solution it forces them into Gac. Is there ...
0
votes
1answer
172 views

how to force a Timer Job solution to reference dll from gac

I developed a timer job feature using wsp-builder now when I take wsp file and deploy it to our development server it references an old version of dll from GAC even tho I updated gac with latest ...
1
vote
1answer
73 views

my application not referencing latest dll from gac [closed]

I updated latest dll to my gac but still getting error in my application that this method doesn't exists, for some reason I have to get it from Gac and dunno why its not updating it even I did IIS ...
0
votes
1answer
68 views

Problem while building wsp of a solution containing mutiple projects

I have a SharePoint solution having many projects in it, dlls generated by each project is placed in GAC, now whenever I build the solution and generate the wsp, i can see an old version of a ...
0
votes
2answers
245 views

Will be next SharePoint 13/15 have new deploy features?

Over the past couple of years I've been making solutions for SharePoint Server and always most important problem was the availability of the web-site. Deployment not-sandboxed solution is pain at ...
0
votes
3answers
498 views

Cant load AjaxControlToolkit despite being deployed to GAC

I want to use AjaxControlToolkit on my application pages. I created new project where I added AjaxControlToolkit as safe control. When I deploy this project (package), I can see AjaxControlToolkit in ...
1
vote
2answers
964 views

Cannot add the specified assembly to the global assembly cache: log4net.dll.

I have a project that reference log4net. In the package I have specified that the assembly should be deployed to the GAC. When I try to deploy the application from VS2010 I get the following error: ...
1
vote
1answer
71 views

What are the technical reasons to go for BIN deployment in SharePoint 2010?

In my current project, the team uses BIN deployment instead of the standard GAC deployment. The application is just a custom application using NHibernate as the ORM framework. I know thats not a good ...
0
votes
3answers
347 views

Visual Studio assembly references form common assemblies and SharePoint

I have some logging and other common libraries that i want to use in my SharePoint solutions. These common dlls will be deployed to the GAC, i was thinking of creating a .wsp for them just on there ...
2
votes
1answer
430 views

Assembly binding failure for all old Microsoft.SharePoint (version 12.0.0.0) dlls

My SharePoint 2010 dev box seems to have gone crazy today. I started to get an error when using U2U's CAML builder and trying to connect to a site using the Object Model. The error message is as ...
3
votes
1answer
457 views

Why would “Assembly Deployment Target” be disabled, in a non-sandboxed solution?

I have a visual studio project where I am trying to GAC the dll that is created. My problem is that when I click on the project and look at the "Assembly Deployment Target" property it is disabled ...
1
vote
2answers
880 views

The type or namespace name 'X' could not be found (are you missing a using directive or an assembly reference?)

I have a weird problem I just can't place. I have a SP 2010 project which contains two sub-projects of type class library (FirstLib and SecondLib). The project build fine, no errors whatsoever, ...
2
votes
1answer
4k views

How to full uninstall SharePoint 2010

I wanted a clean install of SharePoint 2010 so I recently uninstalled it as well as deleted all the content databases from Central Admin and SQL Management server. I then re-installed SharePoint 2010 ...
0
votes
1answer
168 views

SharePoint 2007, WSP solution is not deploying to Global Assembly Cache

I have a standard WSP package with a single assembly that is deployed to the GAC. We have 2 versions of packages, both with the same assembly version and assembly file version. Version 1 installs ...
1
vote
0answers
783 views

File not found on WebPart Deployment

I followed the Instructions on msdn and also this one here but unfortunatley nothing seems to work. I've built a custom webpart and packaged it into a .wsp file since i'm trying to import this ...
1
vote
1answer
1k views

Why am I getting this error? “The given assembly name or codebase was invalid.”

I have created and implemented the IHttpModule interface in order to use the Session_Start event in SharePoint 2010 (like global.asax in asp.net). I have added the add tag into my web.config file in ...
2
votes
1answer
749 views

How can I ensure that an Assembly is deployed to the GAC on all Servers in a Farm

I have a SharePoint Solution that contains an Assembly that contains an SPTimerJobDefinition that must be deployed to the GAC on all Servers in my farm. I have configured my farm in the following ...
0
votes
1answer
1k views

Class not found in assembly when deploying custom timer job

Been struggling with this problem for a while. I'm deploying a custom timer job to SharePoint Foundation 2010, initially using the tutorial here. This timer job is supposed to add an element to a ...
1
vote
2answers
801 views

SharePoint 2010 Foundation Microsoft.SharePoint.Taxonomy.dll

Is Microsoft.SharePoint.Taxonomy.dll available with SharePoint 2010 Foundation?
4
votes
2answers
570 views

How to install a WSP that has dependant assemblies?

I have a solution in Visual Studio 2010 that is made up of 3 projects. I have one project for my SharePoint 2010 custom timer job, one project (Project A) that is used by my custom timer job, and ...
1
vote
1answer
208 views

WSPBuilder quick copy to bin

I've been developing a web part and making use of WSPBuilder's handy 'Copy to GAC' menu option to redeploy the corresponding DLL when I make a change. This is nice and speedy so I don't have to do a ...
1
vote
5answers
2k views

SharePoint 2010 GAC deployment doesn't update

The following issue just crept up on me. The steps mentioned below had worked just fine until about 2 days ago. When I deploy a update to a solution (of web parts) to a SharePoint 2010 server I don't ...
0
votes
1answer
1k views

SharePoint 2007 Deployment has File Not Found exception for .ashx file

I've created a custom .ashx file called it SyncExcelToList.ashx. The assembly is GACed and does show up fine in C:\windows\assembly The ashx file does show up in the proper place within the 12 hive ...
0
votes
1answer
112 views

Is it possible to deploy a BDC model to BIN instead of the GAC

I have a BDC model which uses a .NET assembly to connect to an Oracle database. In order to make the connection working I need some ORA files in the same directory in the connecting assembly, so I ...
1
vote
2answers
830 views

Does replacing an assembly in the GAC cause a reset?

So, I have a web part I wrote that is not working correctly, I get "object reference not set to an instance of an object." it works fine in dev, but when I installed in prod, it doesn't. Anyway, if I ...
2
votes
4answers
1k views

GAC'ed assembly storage location?

When you deploy a feature with assemblies that get registered in the GAC, where do these assemblies get stored? I thought this would be an easy thing to find, but apparently my Bing-foo is weak today. ...