-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.nuspec
More file actions
34 lines (34 loc) · 1.38 KB
/
Copy pathpackage.nuspec
File metadata and controls
34 lines (34 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Krenckel.NppPlugin</id>
<version>2.0.2</version>
<releaseNotes>
BugFix: Disabled template engines processing for #if for certain sections
Dependencies added tot the nuget package, so you can easily see, what packages the project uses.
</releaseNotes>
<description>
A Visual Studio project template for building Notepad++ plugins in C# (.NET 6–9).
</description>
<authors>Pascal Krenckel</authors>
<license type="expression">Apache-2.0</license>
<packageTypes>
<packageType name="Template" />
</packageTypes>
<icon>icon.png</icon>
<projectUrl>https://github.com/Pascal-Krenckel/NppPluginTemplate</projectUrl>
<repository type="git" url="https://github.com/Pascal-Krenckel/NppPluginTemplate" />
<tags>Notepad++ project template csharp</tags>
<readme>docs\README.md</readme>
<copyright>Copyright © Pascal Krenckel 2026</copyright>
<dependencies>
<dependency id="DNNE" version="[2.0.8,)"/>
<dependency id="System.Drawing.Common" version="[10.0.8,)" />
</dependencies>
</metadata>
<files>
<file src="NppPlugin*\**\*.*" exclude="NppPlugin*\**\bin\**\*.*;NppPlugin*\**\obj\**\*.*;NppPlugin*\**\.vs\**\*.*;" target="Content" />
<file src="icon.png" target=""/>
<file src="README.md" target="docs\" />
</files>
</package>