-
Notifications
You must be signed in to change notification settings - Fork 271
Expand file tree
/
Copy pathSample.Common.csproj
More file actions
31 lines (25 loc) · 1.24 KB
/
Sample.Common.csproj
File metadata and controls
31 lines (25 loc) · 1.24 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
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net472</TargetFrameworks>
<RootNamespace>Sample.Common</RootNamespace>
<AssemblyName>Sample.Common</AssemblyName>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)..\..\Graph.props" />
<ItemGroup>
<PackageReference Include="MSTest.TestFramework" Version="3.5.2" />
<PackageReference Include="Microsoft.Graph.Communications.Calls" Version="1.2.0.3742" />
<PackageReference Include="Microsoft.Graph.Communications.Client" Version="1.2.0.3742" />
<PackageReference Include="Microsoft.Graph.Communications.Common" Version="1.2.0.3742" />
<PackageReference Include="Microsoft.Graph.Communications.Core" Version="1.2.0.3742" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.0.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net472' ">
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
</Project>