-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy pathClientLibraryConsoleAppSample.csproj
More file actions
25 lines (25 loc) · 1.36 KB
/
ClientLibraryConsoleAppSample.csproj
File metadata and controls
25 lines (25 loc) · 1.36 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net472</TargetFramework>
<!--<TargetFramework>netcoreapp2.0</TargetFramework>-->
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<RootNamespace>ClientLibraryConsoleAppSample</RootNamespace>
<AssemblyName>ClientLibraryConsoleAppSample</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.4" Condition="'$(TargetFramework)' == 'netcoreapp2.0'" />
<PackageReference Include="Microsoft.TeamFoundationServer.ExtendedClient" Version="19.212.0-preview" />
<PackageReference Include="System.Net.Http" Version="4.3.4" Condition="'$(TargetFramework)' == 'netcoreapp2.0'" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.2.1" Condition="'$(TargetFramework)' == 'netcoreapp2.0'" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Net" />
<Reference Include="System.Net.Http" Condition="'$(TargetFramework)' == 'net452'" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel" Condition="'$(TargetFramework)' == 'net452'" />
<Reference Include="System.Xml" />
</ItemGroup>
</Project>