-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpathways-common.csproj
More file actions
25 lines (22 loc) · 907 Bytes
/
pathways-common.csproj
File metadata and controls
25 lines (22 loc) · 907 Bytes
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.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<TargetLatestRuntimePatch>false</TargetLatestRuntimePatch>
<RootNamespace>pathways_common</RootNamespace>
<Configurations>Debug;Release;Test</Configurations>
<Platforms>AnyCPU</Platforms>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.AzureAD.UI">
<Version>2.2.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.Graph">
<Version>1.15.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.Identity.Client">
<Version>4.0.0</Version>
</PackageReference>
</ItemGroup>
</Project>