-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfitsdk.csproj
44 lines (38 loc) · 1.31 KB
/
fitsdk.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp2.0;net46;netstandard2.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<PackageId>Garmin.FIT.Sdk</PackageId>
<Version>21.158.0</Version>
<Authors>Garmin International, Inc.</Authors>
<Company>Garmin International, Inc.</Company>
<PackageDescription>FIT C# SDK</PackageDescription>
<PackageProjectUrl>https://developer.garmin.com/fit/overview/</PackageProjectUrl>
<PackageTags>fit fitsdk garmin</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.txt" Pack="true" PackagePath=""/>
<None Include="README.md" Pack="true" PackagePath=""/>
</ItemGroup>
<ItemGroup>
<Content Remove="Cookbook\**" />
<Compile Remove="Cookbook\**" />
<EmbeddedResource Remove="Cookbook\**" />
<None Remove="Cookbook\**" />
</ItemGroup>
<ItemGroup>
<Content Remove="Examples\**" />
<Compile Remove="Examples\**" />
<EmbeddedResource Remove="Examples\**" />
<None Remove="Examples\**" />
</ItemGroup>
<ItemGroup>
<Content Remove="plugins\**" />
<Compile Remove="plugins\**" />
<EmbeddedResource Remove="plugins\**" />
<None Remove="plugins\**" />
</ItemGroup>
</Project>