-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAugmentaClientSDK-CS.csproj
45 lines (40 loc) · 1.49 KB
/
AugmentaClientSDK-CS.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
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>Augmenta</RootNamespace>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Augmenta Client C# SDK</Title>
<Authors>augmenta</Authors>
<Company>Augmenta</Company>
<PackageId>augmenta.client.sdk</PackageId>
<Description>Contains everything you need to build your own client for the Augmenta tracking system for interactive experiences.</Description>
<PackageIcon>augmenta_icon.png</PackageIcon>
<PackageProjectUrl>https://augmenta.tech/</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Augmenta-tech/Augmenta-Websocket-CS</RepositoryUrl>
<PackageTags>augmenta; interactive; sdk; audiovisual</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<AssemblyVersion>$(PackageVersion)</AssemblyVersion>
<FileVersion>$(PackageVersion)</FileVersion>
<Version>2.0.3</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ZstdNet" Version="1.4.5" />
</ItemGroup>
<ItemGroup>
<None Include="resources\augmenta_icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Update="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>