-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request pnp#1504 from spplante/Provisioning.PnPDeployer.Co…
…nsole New Sample Provisioning.PnPDeployer.Console
- Loading branch information
Showing
36 changed files
with
5,275 additions
and
0 deletions.
There are no files selected for viewing
77 changes: 77 additions & 0 deletions
77
Samples/Provisioning.PnPDeployer.Console/PNP.Deployer.Common/Classes/Helpers/XmlUtility.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
using System; | ||
using System.IO; | ||
using System.Text; | ||
using System.Xml; | ||
using System.Xml.Serialization; | ||
|
||
namespace PNP.Deployer.Common | ||
{ | ||
// ======================================================= | ||
/// <author> | ||
/// Simon-Pierre Plante ([email protected]) | ||
/// </author> | ||
// ======================================================= | ||
public static class XmlUtility | ||
{ | ||
#region Public Methods | ||
|
||
// =========================================================================================================== | ||
/// <summary> | ||
/// Validates the specified XML file based on the specified XSD file | ||
/// </summary> | ||
/// <param name="xmlPath">The path of the XML file to validate</param> | ||
/// <param name="xsdPath">The path of the XSD file to be used for validation</param> | ||
// =========================================================================================================== | ||
public static void ValidateSchema(string xmlPath, string xsdPath) | ||
{ | ||
XmlDocument doc = new XmlDocument(); | ||
doc.Load(xmlPath); | ||
doc.Schemas.Add(null, xsdPath); | ||
doc.Validate(null); | ||
} | ||
|
||
|
||
// =========================================================================================================== | ||
/// <summary> | ||
/// Deserializes the specified XML file into the desired type of object based on the specified XML file | ||
/// </summary> | ||
/// <typeparam name="T">The type of object in which the XML needs to be deserialized</typeparam> | ||
/// <param name="xmlPath">The path of the XML file that needs to be deserialized</param> | ||
/// <returns>The deserialized XML in the form of the requested type (T)</returns> | ||
// =========================================================================================================== | ||
public static T DeserializeXmlFile<T>(string xmlPath) | ||
{ | ||
T deserializedObject = default(T); | ||
|
||
XmlSerializer serializer = new XmlSerializer(typeof(T)); | ||
XmlTextReader reader = new XmlTextReader(xmlPath); | ||
deserializedObject = (T)serializer.Deserialize(reader); | ||
|
||
return deserializedObject; | ||
} | ||
|
||
|
||
// =========================================================================================================== | ||
/// <summary> | ||
/// Deserializes the specified XML file into the desired type of object based on the specified string reader | ||
/// </summary> | ||
/// <typeparam name="T">The type of object in which the XML needs to be deserialized</typeparam> | ||
/// <param name="xml">A <b>string</b> that contains the XML that needs to be deserialized</param> | ||
/// <returns>The deserialized XML in the form of the requested type (T)</returns> | ||
// =========================================================================================================== | ||
public static T DeserializeXml<T>(string xml) | ||
{ | ||
T deserializedObject = default(T); | ||
|
||
using (MemoryStream stream = new MemoryStream(Encoding.UTF8.GetBytes(xml))) | ||
{ | ||
XmlSerializer serializer = new XmlSerializer(typeof(T)); | ||
deserializedObject = (T)serializer.Deserialize(stream); | ||
} | ||
|
||
return deserializedObject; | ||
} | ||
|
||
#endregion | ||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
Samples/Provisioning.PnPDeployer.Console/PNP.Deployer.Common/PNP.Deployer.Common.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{0FE76181-46FE-451B-B7A0-83E8B455DA5D}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>PNP.Deployer.Common</RootNamespace> | ||
<AssemblyName>PNP.Deployer.Common</AssemblyName> | ||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Classes\Helpers\XmlUtility.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
</Project> |
36 changes: 36 additions & 0 deletions
36
Samples/Provisioning.PnPDeployer.Console/PNP.Deployer.Common/Properties/AssemblyInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("PNP.Deployer.Common")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("PNP.Deployer.Common")] | ||
[assembly: AssemblyCopyright("Copyright © 2016")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
// Setting ComVisible to false makes the types in this assembly not visible | ||
// to COM components. If you need to access a type in this assembly from | ||
// COM, set the ComVisible attribute to true on that type. | ||
[assembly: ComVisible(false)] | ||
|
||
// The following GUID is for the ID of the typelib if this project is exposed to COM | ||
[assembly: Guid("0fe76181-46fe-451b-b7a0-83e8b455da5d")] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("1.0.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0.0")] |
109 changes: 109 additions & 0 deletions
109
.../PNP.Deployer.ExtensibilityProviders.CSOM/PNP.Deployer.ExtensibilityProviders.CSOM.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{CA4E46F3-08F9-41E1-B90E-EDCDAD22EC22}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>PNP.Deployer.ExtensibilityProviders.CSOM</RootNamespace> | ||
<AssemblyName>PNP.Deployer.ExtensibilityProviders.CSOM</AssemblyName> | ||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | ||
<Private>True</Private> | ||
</Reference> | ||
<Reference Include="Microsoft.IdentityModel.Extensions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=69c3241e6f0468ca, processorArchitecture=MSIL" /> | ||
<Reference Include="Microsoft.Office.Client.Policy, Version=15.0.0.0" /> | ||
<Reference Include="Microsoft.Office.Client.TranslationServices, Version=15.0.0.0" /> | ||
<Reference Include="Microsoft.Online.SharePoint.Client.Tenant, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\SharePointPnPCore2013.2.6.1608.0\lib\net45\Microsoft.Online.SharePoint.Client.Tenant.dll</HintPath> | ||
<Private>True</Private> | ||
</Reference> | ||
<Reference Include="Microsoft.SharePoint.Client, Version=15.0.0.0" /> | ||
<Reference Include="Microsoft.SharePoint.Client.DocumentManagement, Version=15.0.0.0" /> | ||
<Reference Include="Microsoft.SharePoint.Client.Publishing, Version=15.0.0.0" /> | ||
<Reference Include="Microsoft.SharePoint.Client.Runtime, Version=15.0.0.0" /> | ||
<Reference Include="Microsoft.SharePoint.Client.Search, Version=15.0.0.0" /> | ||
<Reference Include="Microsoft.SharePoint.Client.Search.Applications, Version=15.0.0.0" /> | ||
<Reference Include="Microsoft.SharePoint.Client.Taxonomy, Version=15.0.0.0" /> | ||
<Reference Include="Microsoft.SharePoint.Client.UserProfiles, Version=15.0.0.0" /> | ||
<Reference Include="Microsoft.SharePoint.Client.WorkflowServices, Version=15.0.0.0" /> | ||
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> | ||
<Private>True</Private> | ||
</Reference> | ||
<Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\NLog.4.3.7\lib\net45\NLog.dll</HintPath> | ||
<Private>True</Private> | ||
</Reference> | ||
<Reference Include="OfficeDevPnP.Core, Version=2.6.1608.0, Culture=neutral, PublicKeyToken=3751622786b357c2, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\SharePointPnPCore2013.2.6.1608.0\lib\net45\OfficeDevPnP.Core.dll</HintPath> | ||
<Private>True</Private> | ||
</Reference> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Configuration" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.IdentityModel" /> | ||
<Reference Include="System.IdentityModel.Selectors" /> | ||
<Reference Include="System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.3\lib\net45\System.Net.Http.Formatting.dll</HintPath> | ||
<Private>True</Private> | ||
</Reference> | ||
<Reference Include="System.ServiceModel" /> | ||
<Reference Include="System.Web" /> | ||
<Reference Include="System.Web.Extensions" /> | ||
<Reference Include="System.Web.Http, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Microsoft.AspNet.WebApi.Core.5.2.3\lib\net45\System.Web.Http.dll</HintPath> | ||
<Private>True</Private> | ||
</Reference> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="SharePointContext.cs" /> | ||
<Compile Include="TokenHelper.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\PNP.Deployer.Common\PNP.Deployer.Common.csproj"> | ||
<Project>{0fe76181-46fe-451b-b7a0-83e8b455da5d}</Project> | ||
<Name>PNP.Deployer.Common</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="packages.config" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
</Project> |
36 changes: 36 additions & 0 deletions
36
...g.PnPDeployer.Console/PNP.Deployer.ExtensibilityProviders.CSOM/Properties/AssemblyInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("PNP.Deployer.ExtensibilityProviders.CSOM")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("PNP.Deployer.ExtensibilityProviders.CSOM")] | ||
[assembly: AssemblyCopyright("Copyright © 2016")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
// Setting ComVisible to false makes the types in this assembly not visible | ||
// to COM components. If you need to access a type in this assembly from | ||
// COM, set the ComVisible attribute to true on that type. | ||
[assembly: ComVisible(false)] | ||
|
||
// The following GUID is for the ID of the typelib if this project is exposed to COM | ||
[assembly: Guid("ca4e46f3-08f9-41e1-b90e-edcdad22ec22")] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("1.0.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0.0")] |
9 changes: 9 additions & 0 deletions
9
...Provisioning.PnPDeployer.Console/PNP.Deployer.ExtensibilityProviders.CSOM/packages.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="AppForSharePointOnlineWebToolkit" version="3.1.2" targetFramework="net452" /> | ||
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.3" targetFramework="net452" /> | ||
<package id="Microsoft.AspNet.WebApi.Core" version="5.2.3" targetFramework="net452" /> | ||
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net452" /> | ||
<package id="NLog" version="4.3.7" targetFramework="net452" /> | ||
<package id="SharePointPnPCore2013" version="2.6.1608.0" targetFramework="net452" /> | ||
</packages> |
Oops, something went wrong.