Added ActiveDirectoryProvider project (placeholder).
This commit is contained in:
parent
9fd6f9e376
commit
061207cb60
6 changed files with 121 additions and 1 deletions
16
ActiveDirectoryProvider/ActiveDirectoryProvider.cs
Normal file
16
ActiveDirectoryProvider/ActiveDirectoryProvider.cs
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace ScrewTurn.Wiki.Plugins.ActiveDirectory {
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Implements a Users Storage Provider for Active Directory.
|
||||||
|
/// </summary>
|
||||||
|
public class ActiveDirectoryProvider {
|
||||||
|
// Placeholder
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
72
ActiveDirectoryProvider/ActiveDirectoryProvider.csproj
Normal file
72
ActiveDirectoryProvider/ActiveDirectoryProvider.csproj
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProductVersion>9.0.30729</ProductVersion>
|
||||||
|
<SchemaVersion>2.0</SchemaVersion>
|
||||||
|
<ProjectGuid>{C7169CA4-9893-4361-96A8-09F87FCF5E8C}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>ScrewTurn.Wiki.Plugins.ActiveDirectory</RootNamespace>
|
||||||
|
<AssemblyName>ActiveDirectoryProvider</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v3.5</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>
|
||||||
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||||
|
<DocumentationFile>bin\Debug\ActiveDirectoryProvider.XML</DocumentationFile>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>none</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||||
|
<DocumentationFile>bin\Release\ActiveDirectoryProvider.XML</DocumentationFile>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core">
|
||||||
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Xml.Linq">
|
||||||
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Data.DataSetExtensions">
|
||||||
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="..\AssemblyVersion.cs">
|
||||||
|
<Link>AssemblyVersion.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="ActiveDirectoryProvider.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\PluginFramework\PluginFramework.csproj">
|
||||||
|
<Project>{531A83D6-76F9-4014-91C5-295818E2D948}</Project>
|
||||||
|
<Name>PluginFramework</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</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>
|
18
ActiveDirectoryProvider/Properties/AssemblyInfo.cs
Normal file
18
ActiveDirectoryProvider/Properties/AssemblyInfo.cs
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
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("ScrewTurn Wiki Active Directory Provider")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
|
||||||
|
// 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("d60c65bc-1ae8-4139-9ed3-ac362cfd1869")]
|
|
@ -66,7 +66,7 @@
|
||||||
<MakeDir Directories="@(WebAppOutput_SqlServer_PublicDirectory_Plugins)" />
|
<MakeDir Directories="@(WebAppOutput_SqlServer_PublicDirectory_Plugins)" />
|
||||||
|
|
||||||
<!-- Plugins Assemblies -->
|
<!-- Plugins Assemblies -->
|
||||||
<CreateItem Include="Temp\PluginPack.*;Temp\SqlServerProviders.*">
|
<CreateItem Include="Temp\PluginPack.*;Temp\SqlServerProviders.*;Temp\ActiveDirectoryProvider.*">
|
||||||
<Output ItemName="BuiltPlugins" TaskParameter="Include" />
|
<Output ItemName="BuiltPlugins" TaskParameter="Include" />
|
||||||
</CreateItem>
|
</CreateItem>
|
||||||
<Copy SourceFiles="@(BuiltPlugins)" DestinationFolder=".\Artifacts\Plugins\" />
|
<Copy SourceFiles="@(BuiltPlugins)" DestinationFolder=".\Artifacts\Plugins\" />
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<project schemaVersion="1.6.0.7">
|
<project schemaVersion="1.6.0.7">
|
||||||
<assemblies>
|
<assemblies>
|
||||||
|
<assembly assemblyPath=".\ActiveDirectoryProvider\bin\Release\ActiveDirectoryProvider.dll" xmlCommentsPath=".\ActiveDirectoryProvider\bin\Release\ActiveDirectoryProvider.xml" commentsOnly="False" />
|
||||||
<assembly assemblyPath=".\PluginPack\bin\Release\PluginPack.dll" xmlCommentsPath=".\PluginPack\bin\Release\PluginPack.xml" commentsOnly="False" />
|
<assembly assemblyPath=".\PluginPack\bin\Release\PluginPack.dll" xmlCommentsPath=".\PluginPack\bin\Release\PluginPack.xml" commentsOnly="False" />
|
||||||
<assembly assemblyPath=".\AclEngine\bin\Release\ScrewTurn.Wiki.AclEngine.dll" xmlCommentsPath=".\AclEngine\bin\Release\ScrewTurn.Wiki.AclEngine.xml" commentsOnly="False" />
|
<assembly assemblyPath=".\AclEngine\bin\Release\ScrewTurn.Wiki.AclEngine.dll" xmlCommentsPath=".\AclEngine\bin\Release\ScrewTurn.Wiki.AclEngine.xml" commentsOnly="False" />
|
||||||
<assembly assemblyPath=".\Core\bin\Release\ScrewTurn.Wiki.Core.dll" xmlCommentsPath=".\Core\bin\Release\ScrewTurn.Wiki.Core.xml" commentsOnly="False" />
|
<assembly assemblyPath=".\Core\bin\Release\ScrewTurn.Wiki.Core.dll" xmlCommentsPath=".\Core\bin\Release\ScrewTurn.Wiki.Core.xml" commentsOnly="False" />
|
||||||
|
@ -15,6 +16,7 @@
|
||||||
<namespaceSummaryItem name="ScrewTurn.Wiki.ImportWiki" isDocumented="True">Namespace containing objects that are used to import data from other wiki engines.</namespaceSummaryItem>
|
<namespaceSummaryItem name="ScrewTurn.Wiki.ImportWiki" isDocumented="True">Namespace containing objects that are used to import data from other wiki engines.</namespaceSummaryItem>
|
||||||
<namespaceSummaryItem name="ScrewTurn.Wiki.PluginFramework" isDocumented="True">Namespace containing base types used to build the ScrewTurn Wiki engine core and plugins.</namespaceSummaryItem>
|
<namespaceSummaryItem name="ScrewTurn.Wiki.PluginFramework" isDocumented="True">Namespace containing base types used to build the ScrewTurn Wiki engine core and plugins.</namespaceSummaryItem>
|
||||||
<namespaceSummaryItem name="ScrewTurn.Wiki.PluginPack" isDocumented="True" />
|
<namespaceSummaryItem name="ScrewTurn.Wiki.PluginPack" isDocumented="True" />
|
||||||
|
<namespaceSummaryItem name="ScrewTurn.Wiki.Plugins.ActiveDirectory" isDocumented="True">Namespace containing Active Directory providers.</namespaceSummaryItem>
|
||||||
<namespaceSummaryItem name="ScrewTurn.Wiki.Plugins.PluginPack" isDocumented="True">Namespace containing generic helper providers.</namespaceSummaryItem>
|
<namespaceSummaryItem name="ScrewTurn.Wiki.Plugins.PluginPack" isDocumented="True">Namespace containing generic helper providers.</namespaceSummaryItem>
|
||||||
<namespaceSummaryItem name="ScrewTurn.Wiki.Plugins.SqlCommon" isDocumented="True">Namespace containing base types used to build the SQL-based storage providers.</namespaceSummaryItem>
|
<namespaceSummaryItem name="ScrewTurn.Wiki.Plugins.SqlCommon" isDocumented="True">Namespace containing base types used to build the SQL-based storage providers.</namespaceSummaryItem>
|
||||||
<namespaceSummaryItem name="ScrewTurn.Wiki.Plugins.SqlServer" isDocumented="True">Namespace containing SQL Server storage providers.</namespaceSummaryItem>
|
<namespaceSummaryItem name="ScrewTurn.Wiki.Plugins.SqlServer" isDocumented="True">Namespace containing SQL Server storage providers.</namespaceSummaryItem>
|
||||||
|
|
|
@ -51,6 +51,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PluginPack", "PluginPack\Pl
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PluginPack-Tests", "PluginPack-Tests\PluginPack-Tests.csproj", "{C657F6C0-05E5-4873-97A4-B91ED1F51D85}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PluginPack-Tests", "PluginPack-Tests\PluginPack-Tests.csproj", "{C657F6C0-05E5-4873-97A4-B91ED1F51D85}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ActiveDirectoryProvider", "ActiveDirectoryProvider\ActiveDirectoryProvider.csproj", "{C7169CA4-9893-4361-96A8-09F87FCF5E8C}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|.NET = Debug|.NET
|
Debug|.NET = Debug|.NET
|
||||||
|
@ -211,6 +213,16 @@ Global
|
||||||
{C657F6C0-05E5-4873-97A4-B91ED1F51D85}.Release|Any CPU.Build.0 = Release|Any CPU
|
{C657F6C0-05E5-4873-97A4-B91ED1F51D85}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{C657F6C0-05E5-4873-97A4-B91ED1F51D85}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
{C657F6C0-05E5-4873-97A4-B91ED1F51D85}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||||
{C657F6C0-05E5-4873-97A4-B91ED1F51D85}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
{C657F6C0-05E5-4873-97A4-B91ED1F51D85}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||||
|
{C7169CA4-9893-4361-96A8-09F87FCF5E8C}.Debug|.NET.ActiveCfg = Debug|Any CPU
|
||||||
|
{C7169CA4-9893-4361-96A8-09F87FCF5E8C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{C7169CA4-9893-4361-96A8-09F87FCF5E8C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{C7169CA4-9893-4361-96A8-09F87FCF5E8C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||||
|
{C7169CA4-9893-4361-96A8-09F87FCF5E8C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||||
|
{C7169CA4-9893-4361-96A8-09F87FCF5E8C}.Release|.NET.ActiveCfg = Release|Any CPU
|
||||||
|
{C7169CA4-9893-4361-96A8-09F87FCF5E8C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{C7169CA4-9893-4361-96A8-09F87FCF5E8C}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{C7169CA4-9893-4361-96A8-09F87FCF5E8C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||||
|
{C7169CA4-9893-4361-96A8-09F87FCF5E8C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue