I created a SharePoint Solution that contained a single Feature. The Feature had a Receiver which is used to make web.config modifications.
I wanted to target these modifications at specific SharePoint web applications. However, when I ran the following PowerShell command, I got the message: "This solution contains no resources scoped for a Web application".
Install-SPSolution –Identity <WSP NAME>.wsp –WebApplication http://<TARGET APP URL> -GACDeployment -Force
Other people suggest not including the target web application url. I don't want to do this as it will affect all web applications, not just our own.
The workaround I used was to include the Solution assembly within its own package, and mark it as a "SafeControl".
I realise that this not ideal. Do you have a better solution?
The steps I followed were:
1) Open the Project Properties for the Solution, and set "Include Assembly in Package" to "False".
2) Edit the Package manifest and include the assembly from the project's own output. Add the assembly / namespace as a SafeControl.
Hello.. Thank you so much.. It's working for me... :)
ReplyDelete