-
Notifications
You must be signed in to change notification settings - Fork 9
/
CSharpTest.Net.RpcLibrary.nuspec
51 lines (43 loc) · 2.25 KB
/
CSharpTest.Net.RpcLibrary.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0"?>
<package
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="nuspec.xsd"
>
<metadata>
<version>$version$</version>
<id>CSharpTest.Net.RpcLibrary</id>
<title>CSharpTest.Net.RpcLibrary</title>
<authors>Roger Knapp</authors>
<owners>Roger Knapp</owners>
<language>en-US</language>
<licenseUrl>http://csharptest.net/src/LICENSE-2.0.txt</licenseUrl>
<projectUrl>https://github.com/csharptest/CSharpTest.Net.RpcLibrary</projectUrl>
<iconUrl>http://csharptest.net/favicon.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright 2008-2011 by Roger Knapp, Licensed under the Apache License, Version 2.0</copyright>
<tags>Rpc Library Win32 InterProcess IPC Remote Remoting named pipes LRPC TCP communications</tags>
<summary>CSharpTest.Net.RpcLibrary provides pure managed interop with the Win32 RPC API</summary>
<releaseNotes>See the main project page (https://github.com/csharptest/CSharpTest.Net.RpcLibrary) for release notes.</releaseNotes>
<description>
<![CDATA[==CSharpTest.Net.RpcLibrary==
Simply one of the fastest and most robust inter-process communcations available
on the Windows platform. WinRPC is the building block of DCOM and probably the
most used remote proceedure call in Windows. In plain words it is the fastest,
most stable, secure transport available. Use it for authenticated or anonymous
communications over LRPC, named-pipes, or tcp/ip.
This assembly provides all the interop nessessary to start a server or client;
however, it is a transport only implementation. In other words, it provides no
more than moving a byte[] back and forth with the remote endpoint. A protocol
is usually layered on top of this to turn raw bytes into meaningful messages.
]]>
</description>
<references>
<reference file="CSharpTest.Net.RpcLibrary.dll"/>
</references>
</metadata>
<files>
<file src="src\CSharpTest.Net.RpcLibrary\bin\CSharpTest.Net.RpcLibrary.???" target="lib\net20" />
<file src="src\CSharpTest.Net.RpcLibrary\bin\net40\CSharpTest.Net.RpcLibrary.???" target="lib\net40" />
<file src="src\CSharpTest.Net.RpcLibrary\**\*.cs" target="src\"/>
</files>
</package>