-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAgiil.Auth.csproj
More file actions
26 lines (21 loc) · 914 Bytes
/
Agiil.Auth.csproj
File metadata and controls
26 lines (21 loc) · 914 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
26
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\Tools\CommonProjectItems.targets" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>Agiil.Auth</PackageId>
<Description>The API definitions & model types for performing authentication in the Agiil app</Description>
<ReleaseVersion>0.11.0</ReleaseVersion>
<Version>$(ReleaseVersion)</Version>
<RootNamespace>Agiil.Auth</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="CSF.Entities" Version="2.0.3" />
<PackageReference Include="CSF.Security" Version="2.0.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
</ItemGroup>
<Import Project="..\Tools\EnableMultiTargetingWithMono.targets" />
</Project>