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

Commit 6e449fa

Browse files
committed
fix building errors in plugin infrastructure
1 parent bfedaca commit 6e449fa

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Visual Studio Project Template C#/Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Runtime.InteropServices;
66
using System.Text;
77
using System.Windows.Forms;
8-
using NppPluginNET;
8+
using Kbg.NppPluginNET;
99

1010
namespace $safeprojectname$
1111
{

Visual Studio Project Template C#/NppPlugin.vstemplate

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<VSTemplate xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Version="2.0.0" Type="Project">
33
<TemplateData>
44
<Name>Notepad++ Plugin</Name>
5-
<Description>Classlibrary, ready to get loaded into N++. Credits for the DllExport part to R. Giesecke</Description>
5+
<Description>Plugin for notepad++</Description>
66
<ProjectType>CSharp</ProjectType>
77
<ProjectSubType>
88
</ProjectSubType>
@@ -37,10 +37,19 @@
3737
<ProjectItem ReplaceParameters="false" TargetFileName="star.png">star.png</ProjectItem>
3838
<ProjectItem ReplaceParameters="false" TargetFileName="star_bmp.bmp">star_bmp.bmp</ProjectItem>
3939
</Folder>
40+
<Folder Name="Integration" TargetFolderName="Integration">
41+
<ProjectItem ReplaceParameters="false" TargetFileName="Docking_h.cs">Docking_h.cs</ProjectItem>
42+
<ProjectItem ReplaceParameters="false" TargetFileName="MenuCmdID_h.cs">MenuCmdID_h.cs</ProjectItem>
43+
<ProjectItem ReplaceParameters="false" TargetFileName="Msgs_h.cs">Msgs_h.cs</ProjectItem>
44+
<ProjectItem ReplaceParameters="false" TargetFileName="Scintilla_iface.cs">Scintilla_iface.cs</ProjectItem>
45+
</Folder>
4046
<ProjectItem ReplaceParameters="true" TargetFileName="Main.cs" OpenInEditor="true">Main.cs</ProjectItem>
4147
<ProjectItem ReplaceParameters="false" TargetFileName="NppPluginNETBase.cs">NppPluginNETBase.cs</ProjectItem>
4248
<ProjectItem ReplaceParameters="false" TargetFileName="NppPluginNETHelper.cs">NppPluginNETHelper.cs</ProjectItem>
4349
<ProjectItem ReplaceParameters="true" TargetFileName="UnmanagedExports.cs">UnmanagedExports.cs</ProjectItem>
50+
<ProjectItem ReplaceParameters="false" TargetFileName="ScintillaGateway.cs">ScintillaGateway.cs</ProjectItem>
51+
<ProjectItem ReplaceParameters="false" TargetFileName="IScintillaGateway.cs">IScintillaGateway.cs</ProjectItem>
52+
<ProjectItem ReplaceParameters="false" TargetFileName="GatewayDomain.cs">GatewayDomain.cs</ProjectItem>
4453
</Project>
4554
</TemplateContent>
4655
</VSTemplate>

0 commit comments

Comments
 (0)