-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathSparkDotNet.csproj
45 lines (38 loc) · 1.97 KB
/
SparkDotNet.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>
<VersionPrefix>1.2.7</VersionPrefix>
<TargetFrameworks>netstandard1.6;net461;net45</TargetFrameworks>
<DebugType>portable</DebugType>
<AssemblyName>SparkDotNet</AssemblyName>
<PackageId>SparkDotNet</PackageId>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.0</NetStandardImplicitPackageVersion>
<PackageLicenseUrl>https://github.com/darrenparkinson/SparkDotNet/blob/master/LICENSE</PackageLicenseUrl>
<Description>An unofficial dotnet library for consuming RESTful APIs for Cisco Spark (now Webex Teams). Please visit Cisco at https://developer.webex.com.</Description>
<Authors>Darren Parkinson</Authors>
<PackageProjectUrl>https://github.com/darrenparkinson/SparkDotNet</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Threading.Tasks" Version="4.0.11" />
<PackageReference Include="System.Text.Encoding" Version="4.0.11" />
<PackageReference Include="System.Runtime" Version="4.1.0" />
<PackageReference Include="System.Net.Primitives" Version="4.0.11" />
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
</Project>