Skip to content

Commit 9edfd26

Browse files
Laszlo HordosLaszlo Hordos
authored andcommitted
OPENICF-389 CR-7778 - Add .Net implementation of new communication protocol
1 parent 4401de8 commit 9edfd26

86 files changed

Lines changed: 24614 additions & 197 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

BooScriptExecutorFactory/BooScriptExecutorFactory.csproj

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,17 @@
2121
"Portions Copyrighted [year] [name of copyright owner]"
2222
====================
2323
-->
24-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
24+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2525
<PropertyGroup>
2626
<ProjectGuid>{0747C440-70E4-4E63-9F9D-03B3A010C991}</ProjectGuid>
2727
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
2828
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
2929
<OutputType>Library</OutputType>
3030
<RootNamespace>Org.IdentityConnectors.Common.Script.Boo</RootNamespace>
3131
<AssemblyName>Boo.ScriptExecutorFactory</AssemblyName>
32-
<ProductName>BooScriptExecutorFactory</ProductName>
33-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
32+
<ProductName>Boo ScriptExecutor Factory</ProductName>
33+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
34+
<TargetFrameworkProfile />
3435
</PropertyGroup>
3536
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
3637
<ErrorReport>prompt</ErrorReport>
@@ -42,6 +43,7 @@
4243
<Optimize>False</Optimize>
4344
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
4445
<DefineConstants>DEBUG;TRACE</DefineConstants>
46+
<Prefer32Bit>false</Prefer32Bit>
4547
</PropertyGroup>
4648
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
4749
<DebugType>pdbonly</DebugType>
@@ -53,6 +55,7 @@
5355
<DebugSymbols>true</DebugSymbols>
5456
<Optimize>True</Optimize>
5557
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
58+
<Prefer32Bit>false</Prefer32Bit>
5659
</PropertyGroup>
5760
<ItemGroup>
5861
<Reference Include="Boo.Lang">
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.2.0
1+
1.5.0.0

Common/Common.csproj

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"Portions Copyrighted [year] [name of copyright owner]"
2222
====================
2323
-->
24-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
24+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2525
<PropertyGroup>
2626
<ProjectGuid>{F140E8DA-52B4-4159-992A-9DA10EA8EEFB}</ProjectGuid>
2727
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -30,12 +30,13 @@
3030
<RootNamespace>Org.IdentityConnectors.Common</RootNamespace>
3131
<AssemblyName>Common</AssemblyName>
3232
<ProductName>Open Connectors Common</ProductName>
33-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
33+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
3434
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
3535
<NoStdLib>False</NoStdLib>
3636
<WarningLevel>4</WarningLevel>
3737
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
3838
<CopyOutput>true</CopyOutput>
39+
<TargetFrameworkProfile />
3940
</PropertyGroup>
4041
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
4142
<OutputPath>bin\Debug\</OutputPath>
@@ -60,6 +61,12 @@
6061
<PlatformTarget>AnyCPU</PlatformTarget>
6162
<FileAlignment>4096</FileAlignment>
6263
</PropertyGroup>
64+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
65+
<Prefer32Bit>false</Prefer32Bit>
66+
</PropertyGroup>
67+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
68+
<Prefer32Bit>false</Prefer32Bit>
69+
</PropertyGroup>
6370
<Import Project="$(MSBuildProjectDirectory)\..\Framework.targets" />
6471
<ItemGroup>
6572
<Reference Include="System" />

Common/version.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.2.0
1+
1.5.0.0

ConnectorFramework.sln

Lines changed: 170 additions & 26 deletions
Large diffs are not rendered by default.

ConnectorServerService/ConnectorServerService.Designer.cs

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)