forked from davidwhitney/SimpleServices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleServices.nuspec
25 lines (25 loc) · 1.5 KB
/
SimpleServices.nuspec
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
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<id>simpleservices</id>
<version>2.0.0</version>
<authors>David Whitney</authors>
<owners>David Whitney</owners>
<description>A base class for self-installing Windows Services with debugging hooks to run as console apps without requiring InstallUtil</description>
<projectUrl>https://github.com/davidwhitney/SimpleServices</projectUrl>
<licenseUrl>http://www.opensource.org/licenses/MIT</licenseUrl>
<tags>windows-service utility base-class installer installation InstallUtil</tags>
<language>en-US</language>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Configuration.Install" targetFramework="net40" />
<frameworkAssembly assemblyName="System.ServiceProcess" targetFramework="net40" />
</frameworkAssemblies>
<releaseNotes>Incremented to V.2, broke the API. BREAKING CHANGES, Renamed service installer to SimpleServiceApplication to fix naming collision with the .net framework causing confusing debugging problems. Clients must rename their Program.cs inheritance of ServiceInstaller to SimpleServiceApplication.</releaseNotes>
</metadata>
<files>
<file src="SimpleServices\bin\Release\SimpleServices.dll" target="lib\Net45\" />
<file src="SimpleServices\bin\Release\SimpleServices.pdb" target="lib\Net45\" />
<file src="SimpleServices.Net4\bin\Release\SimpleServices.dll" target="lib\Net40\" />
<file src="SimpleServices.Net4\bin\Release\SimpleServices.pdb" target="lib\Net40\" />
</files>
</package>