Questions tagged [solution-package]
SharePoint solution is deployed to a SharePoint server by using a solution package (.wsp) file. You can use Visual Studio to organize your SharePoint Project Items into Features and to create a package to deploy your SharePoint Features.
407 questions
0
votes
1
answer
38
views
Can anyone provide automate script to add/deploy/update solution in SharePoint 2016
Can anyone provide automate script to add/deploy/update solution in SharePoint 2016. So that developers can run this batch file without help from SharePoint Administrators. And please suggest me best ...
2
votes
1
answer
740
views
Make wsp compatible for sp2019
I will do a migration from SP2016 to SP2019.
My question is for WSP , what I need to change exactly to be compatible with SP19, and how to do it?
Using visual studio is there a config file to change.
1
vote
0
answers
54
views
Custom list definition solution migrated and not rendering the Sharepoint:Formfield controls
I have a NewForm.aspx and EditForm.aspx from a custom list defined by a WSP where the SharePoint:FormField controls stop to render after the page is loaded for the first time after deployed (not ...
0
votes
0
answers
30
views
Webpart: Modifying Content and Compiling WSP
So I flew the task of changing the web part.
A task. Fix a few lines so that the web part works as we need.
What do we have.
The web part that is installed on Sharepoint 2016.
Web part installer in ....
0
votes
1
answer
1k
views
SPFx Loading Multiple Extensions in One Package
I have been unable to build a SPFx package with multiple application customizer extensions to load. No matter what I do, I can only get the first extension I created to load from the app catalog. I ...
1
vote
0
answers
55
views
WSP package deployed through Powershell commands not reflecting the changes
There are few custom items like lists,content Types and pages which gets deployed through couple of features. When I directly deploy from visual studio, the custom items are deleted and recreated ...
0
votes
1
answer
28
views
How apply activated custom workflow to list
I have a global workflow I've successfully deployed as a .wsp, but I can't apply it to my list. It appears in Site Features in the top level site, and in the Site Features in the site containing the ...
0
votes
1
answer
185
views
Create subsite with custom template timeout error on /_layouts/15/newsbweb.aspx
We are using SP2016 on-premise and have a custom site template. The template is a wsp file upload via Site Settings -> Solution. The same template is working a year before. Also it is working in our ...
0
votes
1
answer
201
views
Update wsp on a specific web application(with multiples)
I have a SharePoint farm with multiple(let us say I have 5 web applications). Every solution has currently the wsp solution installed(we can call it solution1.wsp)
The thing I want to do is I want ...
0
votes
1
answer
118
views
Adding excluded files to publish
I am working on a SharePoint project using VS2019.
When I publish the project, I need to add additional some files to the wsp file. These files are excluded from the project.
I have been looking at ...
0
votes
1
answer
48
views
Deploying to 80 site collections
I am on a project that has 80 site collections. I successfully implemented a few solutions with Vue.js on 1 of the site collections and now I need to implement on the other 79 site collections. How ...
0
votes
1
answer
3k
views
Can we deploy wsp in SharePoint online
I wish to deploy a WSP in sharepoint online site collection.
Unfortunately, when I upload the WSP, I am getting below error:
Activation of solutions with sandboxed code has been disabled in this site ...
1
vote
0
answers
24
views
Using unmanaged dlls in sharepoint farm solution
I have a SharePoint 2016 project with several application pages (farm solution).
In my code, I use un-managed dlls with DllImport attribute. To use them, I copy these dlls to System32 folder.
Is ...
1
vote
2
answers
38
views
Update page(s) to farm without touching codes that were previously deployed via wsp
I'm facing a situation where I only wish to update one page of the farm solution and do not wish to touch the existing codes that were previously deployed onto the farm.
Why do I wish to do so is ...
0
votes
1
answer
317
views
How to execute powershell script from server1 for deploying wsp in server2
I am trying to run a powershell script in server1 to deploy WSP file present in server2. Here is my code:
$password = ConvertTo-SecureString "password" -AsPlainText -Force
$cred = New-Object System....