From 87f1d06f57a41bf39f560c8e0d1b996e95c813a5 Mon Sep 17 00:00:00 2001 From: dail8859 Date: Wed, 6 Feb 2019 19:25:17 -0500 Subject: [PATCH] Update output paths for new Plugin Admin junk --- README.md | 4 ++-- appveyor.yml | 8 +------- src/SurroundSelection.vcxproj | 28 ++++++++++++++++++++-------- 3 files changed, 23 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index e9de454..ef26a3f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # SurroundSelection -[![Build status](https://ci.appveyor.com/api/projects/status/github/dail8859/SurroundSelection?branch=master&svg=true)](https://ci.appveyor.com/project/dail8859/SurroundSelection/branch/master) +[![Build status](https://ci.appveyor.com/api/projects/status/y3rxu3o00clgxm7f?svg=true)](https://ci.appveyor.com/project/dail8859/surroundselection) Notepad++ plugin to automatically surround the selection in quotes/brackets/parenthesis/etc. This can also be used on multiple or rectangular selections. @@ -17,7 +17,7 @@ Select some text and type one of the following characters: - `<` or `>` ## Installation -Install the plugin by downloading it from the [Release](https://github.com/dail8859/SurroundSelection/releases) page and copy `SurroundSelection.dll` to your `plugins` folder. +Install the plugin by downloading it from the [Release](https://github.com/dail8859/SurroundSelection/releases) page and copy `SurroundSelection.dll` to your `plugins` folder. You can also install it via the Plugin Admin or Plugin Manager (depending on your Notepad++ version). ## Development The code has been developed using MSVC 2015. Building the code will generate the DLL which can be used by Notepad++. For convenience, MSVC copies the DLL into the Notepad++ plugin directory. diff --git a/appveyor.yml b/appveyor.yml index c4dacaf..a6a084a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -26,13 +26,7 @@ after_build: - cd "%APPVEYOR_BUILD_FOLDER%" - ps: >- - if ($env:PLATFORM -eq "x64") { - Push-AppveyorArtifact "bin\$($env:CONFIGURATION)_$($env:PLATFORM)\SurroundSelection_64.dll" -FileName SurroundSelection_64.dll - } - - if ($env:PLATFORM -eq "Win32" ) { - Push-AppveyorArtifact "bin\$($env:CONFIGURATION)_$($env:PLATFORM)\SurroundSelection.dll" -FileName SurroundSelection.dll - } + Push-AppveyorArtifact "bin\$($env:CONFIGURATION)_$($env:PLATFORM)\SurroundSelection.dll" -FileName SurroundSelection.dll if ($($env:APPVEYOR_REPO_TAG) -eq "true" -and $env:CONFIGURATION -eq "Release") { if ($env:PLATFORM -eq "x64"){ diff --git a/src/SurroundSelection.vcxproj b/src/SurroundSelection.vcxproj index cfbd845..e0b61cd 100644 --- a/src/SurroundSelection.vcxproj +++ b/src/SurroundSelection.vcxproj @@ -82,10 +82,10 @@ false - $(ProjectName)_64 + $(ProjectName) - $(ProjectName)_64 + $(ProjectName) @@ -115,7 +115,10 @@ MachineX86 - if EXIST "C:\Program Files (x86)\Notepad++\plugins" (copy "$(TargetPath)" "C:\Program Files (x86)\Notepad++\plugins") + if EXIST "C:\Program Files (x86)\Notepad++\plugins\" ( + mkdir "C:\Program Files (x86)\Notepad++\plugins\$(TargetName)" + copy "$(TargetPath)" "C:\Program Files (x86)\Notepad++\plugins\$(TargetName)" +) @@ -135,7 +138,7 @@ shlwapi.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)_64.dll + $(OutDir)$(ProjectName).dll true Windows true @@ -145,7 +148,10 @@ $(OutDir)$(ProjectName).lib - if EXIST "C:\Program Files\Notepad++\plugins" (copy "$(TargetPath)" "C:\Program Files\Notepad++\plugins") + if EXIST "C:\Program Files\Notepad++\plugins\" ( + mkdir "C:\Program Files\Notepad++\plugins\$(TargetName)" + copy "$(TargetPath)" "C:\Program Files\Notepad++\plugins\$(TargetName)" +) @@ -171,7 +177,10 @@ MachineX86 - if EXIST "C:\Program Files (x86)\Notepad++\plugins" (copy "$(TargetPath)" "C:\Program Files (x86)\Notepad++\plugins") + if EXIST "C:\Program Files (x86)\Notepad++\plugins\" ( + mkdir "C:\Program Files (x86)\Notepad++\plugins\$(TargetName)" + copy "$(TargetPath)" "C:\Program Files (x86)\Notepad++\plugins\$(TargetName)" +) @@ -187,7 +196,7 @@ shlwapi.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)_64.dll + $(OutDir)$(ProjectName).dll true $(OutDir)$(ProjectName).pdb Windows @@ -196,7 +205,10 @@ $(OutDir)$(ProjectName).lib - if EXIST "C:\Program Files\Notepad++\plugins" (copy "$(TargetPath)" "C:\Program Files\Notepad++\plugins") + if EXIST "C:\Program Files\Notepad++\plugins\" ( + mkdir "C:\Program Files\Notepad++\plugins\$(TargetName)" + copy "$(TargetPath)" "C:\Program Files\Notepad++\plugins\$(TargetName)" +)