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

Commit 16d3fc0

Browse files
committed
Version info in all cs source files
1 parent b7f2e73 commit 16d3fc0

File tree

15 files changed

+61
-20
lines changed

15 files changed

+61
-20
lines changed

Demo Plugin/NppManagedPluginDemo/Demo.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// NPP plugin platform for .Net v0.90 by Kasper B. Graversen etc.
12
using System;
23
using System.IO;
34
using System.Text;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// NPP plugin platform for .Net v0.90 by Kasper B. Graversen etc.
12
using System;
23
using System.Collections.Generic;
34
using System.Runtime.InteropServices;

Visual Studio Project Template C#/PluginInfrastructure/DllExport/DllExportAttribute.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
// NPP plugin platform for .Net v0.90 by Kasper B. Graversen etc.
2+
using System;
23
using System.Runtime.InteropServices;
34

45
namespace NppPlugin.DllExport

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// NPP plugin for .Net by Kasper Graversen
1+
// NPP plugin platform for .Net v0.90 by Kasper B. Graversen etc.
22
//
33
// This file should stay in sync with the CPP project file
44
// "notepad-plus-plus/PowerEditor/src/WinControls/DockingWnd/Docking.h"

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
// NPP plugin platform for .Net v0.90 by Kasper B. Graversen etc.
2+
using System;
23
using System.Runtime.InteropServices;
34
using System.Text;
45
using Kbg.NppPluginNET.PluginInfrastructure;

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
// NPP plugin platform for .Net v0.90 by Kasper B. Graversen etc.
2+
using System;
23
using Kbg.NppPluginNET.PluginInfrastructure;
34

45
namespace Kbg.NppPluginNET
@@ -9,6 +10,9 @@ public interface INotepadPPGateway
910
}
1011

1112
/// <summary>
13+
/// This it the plugin-writers primary interface to Notepad++/Scintilla.
14+
/// It takes away all the complexity with command numbers and Int-pointer casting.
15+
///
1216
/// See http://www.scintilla.org/ScintillaDoc.html for further details.
1317
/// </summary>
1418
public interface IScintillaGateway
@@ -21,9 +25,6 @@ public interface IScintillaGateway
2125

2226

2327

24-
25-
26-
2728
/* ++Autogenerated -- start of section automatically generated from Scintilla.iface */
2829
/// <summary>Add text to the document at current position. (Scintilla feature 2001)</summary>
2930
unsafe void AddText(int length, string text);

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// NPP plugin for .Net by Kasper Graversen
1+
// NPP plugin platform for .Net v0.90 by Kasper B. Graversen etc.
22
//
33
// This file should stay in sync with the CPP project file
44
// "notepad-plus-plus/PowerEditor/src/menuCmdID.h"
@@ -31,7 +31,7 @@ public enum NppMenuCmd : uint
3131
IDM_FILE_DELETE = (IDM_FILE + 16),
3232
IDM_FILE_RENAME = (IDM_FILE + 17),
3333

34-
// A mettre à jour si on ajoute nouveau menu item dans le menu "File"
34+
// A mettre jour si on ajoute nouveau menu item dans le menu "File"
3535
IDM_FILEMENU_LASTONE = IDM_FILE_RENAME,
3636

3737
IDM_EDIT = (IDM + 2000),

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// NPP plugin for .Net by Kasper Graversen
1+
// NPP plugin platform for .Net v0.90 by Kasper B. Graversen etc.
22
//
33
// This file should stay in sync with the CPP project file
44
// "notepad-plus-plus/PowerEditor/src/MISC/PluginsManager/Notepad_plus_msgs.h"

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
// NPP plugin platform for .Net v0.90 by Kasper B. Graversen etc.
2+
using System;
23
using Kbg.NppPluginNET.PluginInfrastructure;
34

45
namespace Kbg.NppPluginNET

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
// NPP plugin platform for .Net v0.90 by Kasper B. Graversen etc.
2+
using System;
23
using System.Text;
34
using System.Windows.Forms;
45
using System.Collections.Generic;

0 commit comments

Comments
 (0)