-
Notifications
You must be signed in to change notification settings - Fork 4
/
JobObjectWrapper.nuspec
30 lines (30 loc) · 2.22 KB
/
JobObjectWrapper.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
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>JobObjectWrapper</id>
<version>2.0.2</version>
<title>.NET Job Object Wrapper</title>
<authors>Alon Fliess</authors>
<owners>CodeValue</owners>
<licenseUrl>https://github.com/alonf/JobObjectWrapper/blob/master/License.txt</licenseUrl>
<projectUrl>https://github.com/alonf/JobObjectWrapper</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>A job object allows a group of processes to be managed as a unit. Job objects are namable, securable, sharable objects that control attributes of and assign limits to the processes associated with them. Operations performed on the job object affect all processes associated with the job object. JobObjectWrapper is a .NET abstraction over the Win32 Job Object. With this library you can create job objects, create and assign a process to the job, control process and job limits, and register for the various process- and job-related notification events.</description>
<releaseNotes>You must have either X86 or x64 set as your build platform in order to reference these binaries.</releaseNotes>
<summary>JobObjectWrapper is a .NET abstraction over the Win32 Job Object.</summary>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.dll" targetFramework="net40"/>
<frameworkAssembly assemblyName="System.Runtime.Remoting.dll" targetFramework="net40"/>
<frameworkAssembly assemblyName="System.Data.dll" targetFramework="net40"/>
<frameworkAssembly assemblyName="System.Xml.dll" targetFramework="net40"/>
</frameworkAssemblies>
</metadata>
<files>
<file src="Examples\*" target="net40\Examples" />
<file src="x64\Release\InJobProcessCreator.*" target="net40\x64"/>
<file src="x64\Release\JobManagement.*" target="net40\x64"/>
<file src="Release\InJobProcessCreator.*" target="net40\x86"/>
<file src="Release\JobManagement.*" target="net40\x86"/>
<file src="JobObjectWrapper.props" target="build\net40" />
</files>
</package>