-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.nuspec
42 lines (31 loc) · 1.69 KB
/
.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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<!-- The identifier that must be unique within the hosting gallery -->
<id>grpcpi</id>
<!-- The package version number that is used when resolving dependencies -->
<version>1.0.1</version>
<!-- Authors contain text that appears directly on the gallery -->
<authors>Erik Taylor</authors>
<owners>Erik Taylor</owners>
<!-- Project URL provides a link for the gallery -->
<projectUrl>http://github.com/erikest/grpcpi</projectUrl>
<!-- License information is displayed on the gallery -->
<license type="expression">Apache-2.0</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<!-- Any details about this particular release -->
<releaseNotes>Updated to use:
- dotnet core 3.1
- System.Device.Gpio 1.0
- libgrpc_csharp_ext.arm7 1.0.9
</releaseNotes>
<description>gRPC Template configured for a RaspberryPi Client. Includes a nuget reference to ARM7 compiled native library (libgrpc_csharp_ext) necessary for gRPC to work on the pi, and quick scripts for publishing and deploying to your pi. It demonstrates both client/server communication and gpio on a pi client based on the response from the server</description>
<!-- Copyright information -->
<copyright>Copyright ©2019 Erikest</copyright>
<!-- Tags appear in the gallery and can be used for tag searches -->
<tags>dotnet core arm grpc raspberrypi</tags>
<packageTypes>
<packageType name="Template" />
</packageTypes>
</metadata>
</package>