-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathInreachIPC.csproj
36 lines (32 loc) · 1.38 KB
/
InreachIPC.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<Version>0.1.3</Version>
<Authors>Nick Wilson</Authors>
<Company>Ayva</Company>
<PackageId>Ayva.InreachIPC</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>C# Library to communicate with the InReach Satellite API</Description>
<Copyright />
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
<AssemblyVersion>0.0.1.3</AssemblyVersion>
<FileVersion>0.0.1.3</FileVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RootNamespace>Ayva.InreachIPC</RootNamespace>
<AssemblyName>InreachIPC</AssemblyName>
<RepositoryUrl>https://github.com/Nick-W/InreachIPC</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Test\**" />
<EmbeddedResource Remove="Test\**" />
<None Remove="Test\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.7" />
<PackageReference Include="Microsoft.Extensions.ApiDescription.Client" Version="3.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
</ItemGroup>
</Project>