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

Commit 6ac5516

Browse files
committed
Bugfix: set the generated project to C# 3.5 due to the use of Func<>
1 parent 005188d commit 6ac5516

File tree

16 files changed

+17
-17
lines changed

16 files changed

+17
-17
lines changed

Demo Plugin/NppManagedPluginDemo/Demo.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.91.52 by Kasper B. Graversen etc.
1+
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
22
using System;
33
using System.IO;
44
using System.Text;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<RootNamespace>$safeprojectname$</RootNamespace>
1111
<AssemblyName>$safeprojectname$</AssemblyName>
1212
<OutputPath>bin\Debug\</OutputPath>
13-
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1414
<FileUpgradeFlags>
1515
</FileUpgradeFlags>
1616
<UpgradeBackupLocation>

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

0 commit comments

Comments
 (0)