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

Commit

Permalink
Bugfix: set the generated project to C# 3.5 due to the use of Func<>
Browse files Browse the repository at this point in the history
  • Loading branch information
kbilsted committed Jun 8, 2016
1 parent 005188d commit 6ac5516
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Demo Plugin/NppManagedPluginDemo/Demo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
using System;
using System.IO;
using System.Text;
Expand Down
2 changes: 1 addition & 1 deletion Visual Studio Project Template C#/$projectname$.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<RootNamespace>$safeprojectname$</RootNamespace>
<AssemblyName>$safeprojectname$</AssemblyName>
<OutputPath>bin\Debug\</OutputPath>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
using System;
using System.Runtime.InteropServices;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
//
// This file should stay in sync with the CPP project file
// "notepad-plus-plus/PowerEditor/src/WinControls/DockingWnd/Docking.h"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
using System;
using System.Runtime.InteropServices;
using System.Text;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
using System;
using Kbg.NppPluginNET.PluginInfrastructure;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
//
// This file should stay in sync with the CPP project file
// "notepad-plus-plus/PowerEditor/src/menuCmdID.h"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
//
// This file should stay in sync with the CPP project file
// "notepad-plus-plus/PowerEditor/src/MISC/PluginsManager/Notepad_plus_msgs.h"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
using System;
using Kbg.NppPluginNET.PluginInfrastructure;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
using System;
using System.Text;
using System.Windows.Forms;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
using System;
using System.Text;
using Kbg.NppPluginNET.PluginInfrastructure;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
//
// This file should stay in sync with the CPP project file
// "notepad-plus-plus/scintilla/include/Scintilla.iface"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
using System;
using System.Runtime.InteropServices;
using Kbg.NppPluginNET.PluginInfrastructure;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// NPP plugin platform for .Net v0.91.52 by Kasper B. Graversen etc.
// NPP plugin platform for .Net v0.91.57 by Kasper B. Graversen etc.
using System;
using System.Drawing;
using System.Runtime.InteropServices;
Expand Down
4 changes: 2 additions & 2 deletions makerelease.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version = "0.91.52"
$version = "0.91.57"


function replaceVersionInfo($version)
Expand Down Expand Up @@ -36,7 +36,7 @@ write-host "# Zip template and all source files" -foreground green
cd ..
replaceVersionInfo($version)
$releaseFilename = "c:\temp\nppDemoAndProjectTemplate$($version).zip"
rm $releaseFilename
rm '$($releaseFilename)*'
& 'C:\Program Files\7-Zip\7z.exe' a -tzip $releaseFilename * -xr!bin -xr!obj -xr'!.git'


Expand Down

0 comments on commit 6ac5516

Please sign in to comment.