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

Commit 62afcf7

Browse files
committed
works on vs2017 for 32 and 64 bit
1 parent c3ce27f commit 62afcf7

19 files changed

+20
-20
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
What is this? Its a simple template for very fast and easy building plugins for Notepad++ in C#/.Net
44

5-
This is a fork of UFO's plugin package updated for VS2015
5+
This is a fork of UFO's plugin package updated for VS2015 and 2017
66

77
[![Build status](https://ci.appveyor.com/api/projects/status/5f0ui9y2ujugh6wt/branch/master?svg=true)](https://ci.appveyor.com/project/kbilsted/notepadpluspluspluginpack-net/branch/master)
88
[![License](http://img.shields.io/badge/License-Apache_2-red.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5151
</PropertyGroup>
5252
<PropertyGroup>
53-
<!-- Default values for debugging sso it start correct version of Notepad++
53+
<!-- Default values for debugging so it start correct version of Notepad++
5454
$(ProgramW6432) and $(MSBuildProgramFiles32) points to the 64 and 32 bit "Program Files" directories -->
5555
<StartAction>Program</StartAction>
5656
<StartProgram Condition="'$(Platform)'=='x64'">$(ProgramW6432)\Notepad++\notepad++.exe</StartProgram>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// NPP plugin platform for .Net v0.93.96 by Kasper B. Graversen etc.
1+
// NPP plugin platform for .Net v0.94.00 by Kasper B. Graversen etc.
22
using System;
33
using System.Collections.Generic;
44
using System.Runtime.InteropServices;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// NPP plugin platform for .Net v0.93.96 by Kasper B. Graversen etc.
1+
// NPP plugin platform for .Net v0.94.00 by Kasper B. Graversen etc.
22
using System;
33
using System.Runtime.InteropServices;
44

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 platform for .Net v0.93.96 by Kasper B. Graversen etc.
1+
// NPP plugin platform for .Net v0.94.00 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// NPP plugin platform for .Net v0.93.96 by Kasper B. Graversen etc.
1+
// NPP plugin platform for .Net v0.94.00 by Kasper B. Graversen etc.
22
using System;
33
using System.Runtime.InteropServices;
44
using System.Text;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// NPP plugin platform for .Net v0.93.96 by Kasper B. Graversen etc.
1+
// NPP plugin platform for .Net v0.94.00 by Kasper B. Graversen etc.
22
using System;
33
using static Kbg.NppPluginNET.PluginInfrastructure.Win32;
44

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// NPP plugin platform for .Net v0.93.96 by Kasper B. Graversen etc.
1+
// NPP plugin platform for .Net v0.94.00 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"

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 platform for .Net v0.93.96 by Kasper B. Graversen etc.
1+
// NPP plugin platform for .Net v0.94.00 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/NotepadPPGateway.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// NPP plugin platform for .Net v0.93.96 by Kasper B. Graversen etc.
1+
// NPP plugin platform for .Net v0.94.00 by Kasper B. Graversen etc.
22
using System;
33
using System.Text;
44
using NppPluginNET.PluginInfrastructure;

0 commit comments

Comments
 (0)