Hello,
It’s been added in the may release (version 1.0.3)
So if you have the current stable sharepoint 2016 should be working in it.
Do note if you use sharepoint enterprise 2016 you might need a fix in the DB:
Run this in a query on the SolidCP Database:
IF NOT EXISTS (SELECT * FROM [dbo].[Providers] WHERE [DisplayName] = ‘Hosted SharePoint Enterprise 2016’)
BEGIN
DECLARE@provider_id AS INT
DECLARE@group_id AS INT
SELECT@group_id = GroupId FROM [dbo].[ResourceGroups] WHERE GroupName = ‘Sharepoint Enterprise Server’
SELECT TOP 1@provider_id = ProviderId + 1 From [dbo].[Providers] ORDER BY ProviderID DESC
INSERT [dbo].[Providers] ([ProviderID], [GroupID], [ProviderName], [DisplayName], [ProviderType], [EditorControl], [DisableAutoDiscovery])
VALUES (@provider_id,@group_id , N’HostedSharePoint2016Ent’, N’Hosted SharePoint Enterprise 2016′, N’SolidCP.Providers.HostedSolution.HostedSharePointServer2016Ent, SolidCP.Providers.HostedSolution.SharePoint2016Ent’, N’HostedSharePoint30′, NULL)
END
GO
Regards,
Marco