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

Commit 8990322

Browse files
committed
Moved namespace
1 parent c9310d4 commit 8990322

File tree

7 files changed

+7
-12
lines changed

7 files changed

+7
-12
lines changed

Demo Plugin/NppManagedPluginDemo/Demo.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
using System.Drawing.Imaging;
99
using System.Runtime.InteropServices;
1010
using System.Text.RegularExpressions;
11-
using Kbg.NppPluginNET;
1211
using Kbg.NppPluginNET.PluginInfrastructure;
1312

1413
namespace Kbg.NppPluginNET

Visual Studio Project Template C#/PluginInfrastructure/GatewayDomain.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
using System;
33
using System.Runtime.InteropServices;
44
using System.Text;
5-
using Kbg.NppPluginNET.PluginInfrastructure;
65

7-
namespace Kbg.NppPluginNET
6+
namespace Kbg.NppPluginNET.PluginInfrastructure
87
{
98
/// <summary>
109
/// Colours are set using the RGB format (Red, Green, Blue). The intensity of each colour is set in the range 0 to 255.

Visual Studio Project Template C#/PluginInfrastructure/IScintillaGateway.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
22
using System;
3-
using Kbg.NppPluginNET.PluginInfrastructure;
43

5-
namespace Kbg.NppPluginNET
4+
namespace Kbg.NppPluginNET.PluginInfrastructure
65
{
76

87
/// <summary>

Visual Studio Project Template C#/PluginInfrastructure/NotepadPPGateway.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
22
using System;
33
using System.Text;
4-
using Kbg.NppPluginNET.PluginInfrastructure;
4+
using NppPluginNET.PluginInfrastructure;
55

6-
namespace Kbg.NppPluginNET
6+
namespace Kbg.NppPluginNET.PluginInfrastructure
77
{
88
public interface INotepadPPGateway
99
{

Visual Studio Project Template C#/PluginInfrastructure/NppPluginNETBase.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
22
using System;
3-
using Kbg.NppPluginNET.PluginInfrastructure;
43

5-
namespace Kbg.NppPluginNET
4+
namespace Kbg.NppPluginNET.PluginInfrastructure
65
{
76
class PluginBase
87
{

Visual Studio Project Template C#/PluginInfrastructure/NppPluginNETHelper.cs

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

8-
namespace Kbg.NppPluginNET
8+
namespace Kbg.NppPluginNET.PluginInfrastructure
99
{
1010
[StructLayout(LayoutKind.Sequential)]
1111
public struct NppData

Visual Studio Project Template C#/PluginInfrastructure/ScintillaGateway.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
22
using System;
33
using System.Text;
4-
using Kbg.NppPluginNET.PluginInfrastructure;
54

6-
namespace Kbg.NppPluginNET
5+
namespace Kbg.NppPluginNET.PluginInfrastructure
76
{
87
/// <summary>
98
/// This it the plugin-writers primary interface to Notepad++/Scintilla.

0 commit comments

Comments
 (0)