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

Commit db18d3e

Browse files
committed
Change namespace of the standard plugin
1 parent 397baa7 commit db18d3e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Visual Studio Project Template C#/NppPluginNETBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace NppPluginNET
3+
namespace Kbg.NppPluginNET
44
{
55
class PluginBase
66
{

Visual Studio Project Template C#/NppPluginNETHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Collections.Generic;
55
using System.Runtime.InteropServices;
66

7-
namespace NppPluginNET
7+
namespace Kbg.NppPluginNET
88
{
99
#region " Notepad++ "
1010
[StructLayout(LayoutKind.Sequential)]

Visual Studio Project Template C#/UnmanagedExports.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
using System;
22
using System.Runtime.InteropServices;
3-
using NppPluginNET;
43
using NppPlugin.DllExport;
54

6-
namespace $safeprojectname$
5+
namespace Kbg.NppPluginNET
76
{
87
class UnmanagedExports
98
{
@@ -17,7 +16,7 @@ static bool isUnicode()
1716
static void setInfo(NppData notepadPlusData)
1817
{
1918
PluginBase.nppData = notepadPlusData;
20-
Main.CommandMenuInit();
19+
Main.CommandMenuInit();
2120
}
2221

2322
[DllExport(CallingConvention = CallingConvention.Cdecl)]

0 commit comments

Comments
 (0)