Skip to content

Commit b617576

Browse files
committed
Converted ReplicatorMenu to Synergy Windows and added a .NET 6 version.
1 parent be8b21d commit b617576

5 files changed

Lines changed: 243 additions & 111 deletions

File tree

PRJVS/NetReplicationLibrary/NetReplicationLibrary.synproj

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,26 @@
99
<EnableCommonProperties>True</EnableCommonProperties>
1010
<CommonPropertiesFileLocation>$(SolutionDir)Common.props</CommonPropertiesFileLocation>
1111
</PropertyGroup>
12+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
13+
<UnevaluatedOutputPath>REPLICATOR_EXE:</UnevaluatedOutputPath>
14+
<OutputPath>$(SolutionDir)EXE</OutputPath>
15+
<Prefer32Bit>False</Prefer32Bit>
16+
</PropertyGroup>
17+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
18+
<UnevaluatedOutputPath>REPLICATOR_EXE:</UnevaluatedOutputPath>
19+
<OutputPath>$(SolutionDir)EXE</OutputPath>
20+
<Prefer32Bit>False</Prefer32Bit>
21+
</PropertyGroup>
22+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
23+
<UnevaluatedOutputPath>REPLICATOR_EXE:</UnevaluatedOutputPath>
24+
<OutputPath>$(SolutionDir)EXE</OutputPath>
25+
<Prefer32Bit>False</Prefer32Bit>
26+
</PropertyGroup>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
28+
<UnevaluatedOutputPath>REPLICATOR_EXE:</UnevaluatedOutputPath>
29+
<OutputPath>$(SolutionDir)EXE</OutputPath>
30+
<Prefer32Bit>False</Prefer32Bit>
31+
</PropertyGroup>
1232
<ItemGroup>
1333
<PackageReference Include="Synergex.SynergyDE.Build" Version="23.*" />
1434
<PackageReference Include="Synergex.SynergyDE.synrnt" Version="12.*" />

PRJVS/NetReplicator/NetReplicator.synproj

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,26 @@
1111
<EnableCommonProperties>True</EnableCommonProperties>
1212
<CommonPropertiesFileLocation>$(SolutionDir)Common.props</CommonPropertiesFileLocation>
1313
</PropertyGroup>
14+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
15+
<UnevaluatedOutputPath>REPLICATOR_EXE:</UnevaluatedOutputPath>
16+
<OutputPath>$(SolutionDir)EXE</OutputPath>
17+
<Prefer32Bit>False</Prefer32Bit>
18+
</PropertyGroup>
19+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
20+
<UnevaluatedOutputPath>REPLICATOR_EXE:</UnevaluatedOutputPath>
21+
<OutputPath>$(SolutionDir)EXE</OutputPath>
22+
<Prefer32Bit>False</Prefer32Bit>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
25+
<UnevaluatedOutputPath>REPLICATOR_EXE:</UnevaluatedOutputPath>
26+
<OutputPath>$(SolutionDir)EXE</OutputPath>
27+
<Prefer32Bit>False</Prefer32Bit>
28+
</PropertyGroup>
29+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
30+
<UnevaluatedOutputPath>REPLICATOR_EXE:</UnevaluatedOutputPath>
31+
<OutputPath>$(SolutionDir)EXE</OutputPath>
32+
<Prefer32Bit>False</Prefer32Bit>
33+
</PropertyGroup>
1434
<ItemGroup>
1535
<PackageReference Include="Synergex.SynergyDE.Build" Version="23.*" />
1636
<PackageReference Include="Synergex.SynergyDE.synrnt" Version="12.*" />
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<Project Sdk="Microsoft.NET.Sdk" DefaultTargets="restore;Build">
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
<TargetFramework Condition="'$(TargetFrameworkOverride)' == ''">net6.0</TargetFramework>
5+
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">$(TargetFrameworkOverride)</TargetFramework>
6+
<DefaultLanguageSourceExtension>.dbl</DefaultLanguageSourceExtension>
7+
<EnableDefaultItems>false</EnableDefaultItems>
8+
<ProjectGuid>{8d5e6b55-813c-4921-a676-e0eb82a3dbd9}</ProjectGuid>
9+
<Name>NetReplicatorMenu</Name>
10+
</PropertyGroup>
11+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
12+
<UnevaluatedOutputPath>REPLICATOR_EXE:</UnevaluatedOutputPath>
13+
<Prefer32Bit>False</Prefer32Bit>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
16+
<UnevaluatedOutputPath>REPLICATOR_EXE:</UnevaluatedOutputPath>
17+
<Prefer32Bit>False</Prefer32Bit>
18+
</PropertyGroup>
19+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
20+
<UnevaluatedOutputPath>REPLICATOR_EXE:</UnevaluatedOutputPath>
21+
<Prefer32Bit>False</Prefer32Bit>
22+
</PropertyGroup>
23+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
24+
<UnevaluatedOutputPath>REPLICATOR_EXE:</UnevaluatedOutputPath>
25+
<Prefer32Bit>False</Prefer32Bit>
26+
</PropertyGroup>
27+
<ItemGroup>
28+
<Compile Include="..\..\SRC\TOOLS\ReplicatorMenu.dbl" />
29+
</ItemGroup>
30+
<ItemGroup>
31+
<PackageReference Include="Synergex.SynergyDE.Build" Version="23.*" />
32+
<PackageReference Include="Synergex.SynergyDE.synrnt" Version="12.*" />
33+
</ItemGroup>
34+
<ItemGroup>
35+
<ProjectReference Include="..\NetReplicationLibrary\NetReplicationLibrary.synproj">
36+
<Name>NetReplicationLibrary</Name>
37+
<Private>True</Private>
38+
</ProjectReference>
39+
</ItemGroup>
40+
</Project>

0 commit comments

Comments
 (0)