Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit c474f5f

Browse files
committed
Renaming integration folder to plugininfrastructure
1 parent 5c1e16b commit c474f5f

29 files changed

+106
-89
lines changed

Demo Plugin/NppManagedPluginDemo/Demo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Runtime.InteropServices;
99
using System.Text.RegularExpressions;
1010
using Kbg.NppPluginNET;
11-
using NppPluginNET.Integration;
11+
using Kbg.NppPluginNET.PluginInfrastructure;
1212

1313
namespace Kbg.NppPluginNET
1414
{

Demo Plugin/NppManagedPluginDemo/Forms/frmGoToLine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Windows.Forms;
33
using Kbg.NppPluginNET;
4-
using NppPluginNET.Integration;
4+
using Kbg.NppPluginNET.PluginInfrastructure;
55

66
namespace Kbg.Demo.Namespace
77
{

Demo Plugin/NppManagedPluginDemo/NppManagedPluginDemo.VS2015.csproj

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -46,44 +46,44 @@
4646
<Prefer32Bit>false</Prefer32Bit>
4747
</PropertyGroup>
4848
<ItemGroup>
49-
<Compile Include="..\..\Visual Studio Project Template C#\DllExport\DllExportAttribute.cs">
50-
<Link>DllExport\DllExportAttribute.cs</Link>
49+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\DllExport\DllExportAttribute.cs">
50+
<Link>PluginInfrastructure\DllExport\DllExportAttribute.cs</Link>
5151
</Compile>
52-
<Compile Include="..\..\Visual Studio Project Template C#\Integration\ClikeStringArray.cs">
53-
<Link>Integration\ClikeStringArray.cs</Link>
52+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\ClikeStringArray.cs">
53+
<Link>PluginInfrastructure\ClikeStringArray.cs</Link>
5454
</Compile>
55-
<Compile Include="..\..\Visual Studio Project Template C#\Integration\Win32.cs">
56-
<Link>Integration\Win32.cs</Link>
55+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\Win32.cs">
56+
<Link>PluginInfrastructure\Win32.cs</Link>
5757
</Compile>
58-
<Compile Include="..\..\Visual Studio Project Template C#\ScintillaGateway.cs">
59-
<Link>ScintillaGateway.cs</Link>
58+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\ScintillaGateway.cs">
59+
<Link>PluginInfrastructure\ScintillaGateway.cs</Link>
6060
</Compile>
61-
<Compile Include="..\..\Visual Studio Project Template C#\IScintillaGateway.cs">
62-
<Link>IScintillaGateway.cs</Link>
61+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\IScintillaGateway.cs">
62+
<Link>PluginInfrastructure\IScintillaGateway.cs</Link>
6363
</Compile>
64-
<Compile Include="..\..\Visual Studio Project Template C#\GatewayDomain.cs">
65-
<Link>GatewayDomain.cs</Link>
64+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\GatewayDomain.cs">
65+
<Link>PluginInfrastructure\GatewayDomain.cs</Link>
6666
</Compile>
67-
<Compile Include="..\..\Visual Studio Project Template C#\Integration\Docking_h.cs">
68-
<Link>Integration\Docking_h.cs</Link>
67+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\Docking_h.cs">
68+
<Link>PluginInfrastructure\Docking_h.cs</Link>
6969
</Compile>
70-
<Compile Include="..\..\Visual Studio Project Template C#\Integration\MenuCmdID_h.cs">
71-
<Link>Integration\MenuCmdID_h.cs</Link>
70+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\MenuCmdID_h.cs">
71+
<Link>PluginInfrastructure\MenuCmdID_h.cs</Link>
7272
</Compile>
73-
<Compile Include="..\..\Visual Studio Project Template C#\Integration\Msgs_h.cs">
74-
<Link>Integration\Msgs_h.cs</Link>
73+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\Msgs_h.cs">
74+
<Link>PluginInfrastructure\Msgs_h.cs</Link>
7575
</Compile>
76-
<Compile Include="..\..\Visual Studio Project Template C#\Integration\Scintilla_iface.cs">
77-
<Link>Integration\Scintilla_iface.cs</Link>
76+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\Scintilla_iface.cs">
77+
<Link>PluginInfrastructure\Scintilla_iface.cs</Link>
7878
</Compile>
79-
<Compile Include="..\..\Visual Studio Project Template C#\NppPluginNETBase.cs">
80-
<Link>NppPluginNETBase.cs</Link>
79+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\NppPluginNETBase.cs">
80+
<Link>PluginInfrastructure\NppPluginNETBase.cs</Link>
8181
</Compile>
82-
<Compile Include="..\..\Visual Studio Project Template C#\NppPluginNETHelper.cs">
83-
<Link>NppPluginNETHelper.cs</Link>
82+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\NppPluginNETHelper.cs">
83+
<Link>PluginInfrastructure\NppPluginNETHelper.cs</Link>
8484
</Compile>
85-
<Compile Include="..\..\Visual Studio Project Template C#\UnmanagedExports.cs">
86-
<Link>UnmanagedExports.cs</Link>
85+
<Compile Include="..\..\Visual Studio Project Template C#\PluginInfrastructure\UnmanagedExports.cs">
86+
<Link>PluginInfrastructure\UnmanagedExports.cs</Link>
8787
</Compile>
8888
<Compile Include="Forms\frmGoToLine.cs">
8989
<SubType>Form</SubType>
@@ -116,7 +116,7 @@
116116
<Content Include="Properties\star_bmp.bmp" />
117117
</ItemGroup>
118118
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
119-
<Import Project="$(MSBuildProjectDirectory)\DllExport\NppPlugin.DllExport.targets" />
119+
<Import Project="$(MSBuildProjectDirectory)\PluginInfrastructure\DllExport\NppPlugin.DllExport.targets" />
120120
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
121121
Other similar extension points exist, see Microsoft.Common.targets.
122122
<Target Name="BeforeBuild">

Demo Plugin/NppManagedPluginDemo/DllExport/Mono.Cecil.dll renamed to Demo Plugin/NppManagedPluginDemo/PluginInfrastructure/DllExport/Mono.Cecil.dll

File renamed without changes.

Demo Plugin/NppManagedPluginDemo/DllExport/NppPlugin.DllExport.MSBuild.dll renamed to Demo Plugin/NppManagedPluginDemo/PluginInfrastructure/DllExport/NppPlugin.DllExport.MSBuild.dll

File renamed without changes.

Demo Plugin/NppManagedPluginDemo/DllExport/NppPlugin.DllExport.dll renamed to Demo Plugin/NppManagedPluginDemo/PluginInfrastructure/DllExport/NppPlugin.DllExport.dll

File renamed without changes.

Demo Plugin/NppManagedPluginDemo/DllExport/NppPlugin.DllExport.targets renamed to Demo Plugin/NppManagedPluginDemo/PluginInfrastructure/DllExport/NppPlugin.DllExport.targets

File renamed without changes.

ToolsForMaintainersOfTheProjectTemplate/Scintilla_iface_synchronizer/cs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,9 @@ def printLexIGatewayFile(f):
204204
def main():
205205
f = Face.Face()
206206
f.ReadFromFile("../../../notepad-plus-plus/scintilla/include/Scintilla.iface")
207-
Regenerate("../../Visual Studio Project Template C#/Integration/Scintilla_iface.cs", "/* ", printLexCSFile(f))
208-
Regenerate("../../Visual Studio Project Template C#/ScintillaGateWay.cs", "/* ", printLexGatewayFile(f))
209-
Regenerate("../../Visual Studio Project Template C#/IScintillaGateWay.cs", "/* ", printLexIGatewayFile(f))
207+
Regenerate("../../Visual Studio Project Template C#/PluginInfrastructure/Scintilla_iface.cs", "/* ", printLexCSFile(f))
208+
Regenerate("../../Visual Studio Project Template C#/PluginInfrastructure/ScintillaGateWay.cs", "/* ", printLexGatewayFile(f))
209+
Regenerate("../../Visual Studio Project Template C#/PluginInfrastructure/IScintillaGateWay.cs", "/* ", printLexIGatewayFile(f))
210210

211211

212212
if __name__ == "__main__":

Visual Studio Project Template C#/$projectname$.csproj

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -42,32 +42,32 @@
4242
<Reference Include="System.Windows.Forms" />
4343
</ItemGroup>
4444
<ItemGroup>
45-
<Compile Include="Integration\ClikeStringArray.cs" />
46-
<Compile Include="DllExport\DllExportAttribute.cs" />
45+
<Compile Include="PluginInfrastructure\ClikeStringArray.cs" />
46+
<Compile Include="PluginInfrastructure\DllExport\DllExportAttribute.cs" />
4747
<Compile Include="Forms\frmMyDlg.cs">
4848
<SubType>Form</SubType>
4949
</Compile>
5050
<Compile Include="Forms\frmMyDlg.Designer.cs">
5151
<DependentUpon>frmMyDlg.cs</DependentUpon>
5252
</Compile>
53-
<Compile Include="Integration\Win32.cs" />
53+
<Compile Include="PluginInfrastructure\Win32.cs" />
5454
<Compile Include="Main.cs" />
55-
<Compile Include="GatewayDomain.cs" />
56-
<Compile Include="ScintillaGateway.cs" />
57-
<Compile Include="IScintillaGateway.cs" />
58-
<Compile Include="NppPluginNETBase.cs" />
59-
<Compile Include="NppPluginNETHelper.cs" />
60-
<Compile Include="Integration\Docking_h.cs" />
61-
<Compile Include="Integration\MenuCmdID_h.cs" />
62-
<Compile Include="Integration\Scintilla_iface.cs" />
63-
<Compile Include="Integration\Msgs_h.cs" />
55+
<Compile Include="PluginInfrastructure\GatewayDomain.cs" />
56+
<Compile Include="PluginInfrastructure\ScintillaGateway.cs" />
57+
<Compile Include="PluginInfrastructure\IScintillaGateway.cs" />
58+
<Compile Include="PluginInfrastructure\NppPluginNETBase.cs" />
59+
<Compile Include="PluginInfrastructure\NppPluginNETHelper.cs" />
60+
<Compile Include="PluginInfrastructure\Docking_h.cs" />
61+
<Compile Include="PluginInfrastructure\MenuCmdID_h.cs" />
62+
<Compile Include="PluginInfrastructure\Scintilla_iface.cs" />
63+
<Compile Include="PluginInfrastructure\Msgs_h.cs" />
6464
<Compile Include="Properties\AssemblyInfo.cs" />
6565
<Compile Include="Properties\Resources.Designer.cs">
6666
<AutoGen>True</AutoGen>
6767
<DesignTime>True</DesignTime>
6868
<DependentUpon>Resources.resx</DependentUpon>
6969
</Compile>
70-
<Compile Include="UnmanagedExports.cs" />
70+
<Compile Include="PluginInfrastructure\UnmanagedExports.cs" />
7171
</ItemGroup>
7272
<ItemGroup>
7373
<EmbeddedResource Include="Forms\frmMyDlg.resx">
@@ -80,7 +80,7 @@
8080
</EmbeddedResource>
8181
</ItemGroup>
8282
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
83-
<Import Project="$(MSBuildProjectDirectory)\DllExport\NppPlugin.DllExport.targets" />
83+
<Import Project="$(MSBuildProjectDirectory)\PluginInfrastructure\DllExport\NppPlugin.DllExport.targets" />
8484
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
8585
Other similar extension points exist, see Microsoft.Common.targets.
8686
<Target Name="BeforeBuild">
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25123.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "$projectname$", "$projectname$.csproj", "{E56F6E12-089C-40ED-BCFD-923E5FA121A1}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{E56F6E12-089C-40ED-BCFD-923E5FA121A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{E56F6E12-089C-40ED-BCFD-923E5FA121A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{E56F6E12-089C-40ED-BCFD-923E5FA121A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{E56F6E12-089C-40ED-BCFD-923E5FA121A1}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal

0 commit comments

Comments
 (0)