Skip to content
This repository was archived by the owner on Jan 19, 2021. It is now read-only.

Commit 3c3cbdf

Browse files
Merge pull request #1777 from erwinvanhunen/dev
November 2018 Release
2 parents d274a70 + 4f325f8 commit 3c3cbdf

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,17 @@ All notable changes to this project will be documented in this file.
55

66
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
77

8-
## [3.3.1811.0] Unreleased
8+
## [3.4.1812.0]
9+
10+
### Added
11+
12+
### Changed
13+
14+
### Deprecated
15+
16+
### Contributors
17+
18+
## [3.3.1811.0]
919
### Added
1020

1121
### Changed

Commands/Provisioning/Site/ConvertProvisioningTemplate.cs

+2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ protected override void BeginProcessing()
104104
}
105105
case XMLPnPSchemaVersion.V201605:
106106
{
107+
#pragma warning disable CS0618 // Type or member is obsolete
107108
formatter = XMLPnPSchemaFormatter.GetSpecificFormatter(XMLConstants.PROVISIONING_SCHEMA_NAMESPACE_2016_05);
109+
#pragma warning restore CS0618 // Type or member is obsolete
108110
break;
109111
}
110112
case XMLPnPSchemaVersion.V201705:

Commands/Provisioning/Site/GetProvisioningTemplate.cs

+2
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,9 @@ private void ExtractTemplate(XMLPnPSchemaVersion schema, string path, string pac
416416
}
417417
case XMLPnPSchemaVersion.V201605:
418418
{
419+
#pragma warning disable CS0618 // Type or member is obsolete
419420
formatter = XMLPnPSchemaFormatter.GetSpecificFormatter(XMLConstants.PROVISIONING_SCHEMA_NAMESPACE_2016_05);
421+
#pragma warning restore CS0618 // Type or member is obsolete
420422
break;
421423
}
422424
case XMLPnPSchemaVersion.V201705:

Commands/Provisioning/Tenant/NewTenantSequenceTeamNoGroupSubSite.cs

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ protected override void ProcessRecord()
4848
WriteWarning("New-PnPProvisioningTeamNoGroupSubSite has been deprecated. Use New-PnPTenantSequenceTeamNoGroupSubSite instead.");
4949
}
5050

51-
SiteCollection c;
5251
var site = new TeamNoGroupSubSite()
5352
{
5453
Url = Url,

Commands/Site/SetSite.cs

-3
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,6 @@ public class SetSite : PnPCmdlet
114114
[Parameter(Mandatory = false, HelpMessage = @"Specifies the Geo/Region restrictions of this site.", ParameterSetName = ParameterSet_PROPERTIES)]
115115
public RestrictedToRegion? RestrictedToGeo;
116116

117-
[Parameter(Mandatory = false, HelpMessage = @"Specifies a list of email domains that is allowed for sharing with the external collaborators. Specify a comma separated list for example ""contoso.com"",""fabrikam.com""", ParameterSetName = ParameterSet_PROPERTIES)]
118-
List<string> SharingAllowedDomainList;
119-
120117
[Parameter(Mandatory = false, HelpMessage = @"Disables or enables the Social Bar for Site Collection.", ParameterSetName = ParameterSet_PROPERTIES)]
121118
public SwitchParameter SocialBarOnSitePagesDisabled;
122119

0 commit comments

Comments
 (0)