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

Commit

Permalink
Merge pull request #1777 from erwinvanhunen/dev
Browse files Browse the repository at this point in the history
November 2018 Release
  • Loading branch information
erwinvanhunen committed Nov 9, 2018
2 parents d274a70 + 4f325f8 commit 3c3cbdf
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@ All notable changes to this project will be documented in this file.

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

## [3.3.1811.0] Unreleased
## [3.4.1812.0]

### Added

### Changed

### Deprecated

### Contributors

## [3.3.1811.0]
### Added

### Changed
Expand Down
2 changes: 2 additions & 0 deletions Commands/Provisioning/Site/ConvertProvisioningTemplate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ protected override void BeginProcessing()
}
case XMLPnPSchemaVersion.V201605:
{
#pragma warning disable CS0618 // Type or member is obsolete
formatter = XMLPnPSchemaFormatter.GetSpecificFormatter(XMLConstants.PROVISIONING_SCHEMA_NAMESPACE_2016_05);
#pragma warning restore CS0618 // Type or member is obsolete
break;
}
case XMLPnPSchemaVersion.V201705:
Expand Down
2 changes: 2 additions & 0 deletions Commands/Provisioning/Site/GetProvisioningTemplate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,9 @@ private void ExtractTemplate(XMLPnPSchemaVersion schema, string path, string pac
}
case XMLPnPSchemaVersion.V201605:
{
#pragma warning disable CS0618 // Type or member is obsolete
formatter = XMLPnPSchemaFormatter.GetSpecificFormatter(XMLConstants.PROVISIONING_SCHEMA_NAMESPACE_2016_05);
#pragma warning restore CS0618 // Type or member is obsolete
break;
}
case XMLPnPSchemaVersion.V201705:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ protected override void ProcessRecord()
WriteWarning("New-PnPProvisioningTeamNoGroupSubSite has been deprecated. Use New-PnPTenantSequenceTeamNoGroupSubSite instead.");
}

SiteCollection c;
var site = new TeamNoGroupSubSite()
{
Url = Url,
Expand Down
3 changes: 0 additions & 3 deletions Commands/Site/SetSite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,6 @@ public class SetSite : PnPCmdlet
[Parameter(Mandatory = false, HelpMessage = @"Specifies the Geo/Region restrictions of this site.", ParameterSetName = ParameterSet_PROPERTIES)]
public RestrictedToRegion? RestrictedToGeo;

[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)]
List<string> SharingAllowedDomainList;

[Parameter(Mandatory = false, HelpMessage = @"Disables or enables the Social Bar for Site Collection.", ParameterSetName = ParameterSet_PROPERTIES)]
public SwitchParameter SocialBarOnSitePagesDisabled;

Expand Down

0 comments on commit 3c3cbdf

Please sign in to comment.