-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAgiil.Auth.Impl.csproj
More file actions
51 lines (45 loc) · 2.4 KB
/
Agiil.Auth.Impl.csproj
File metadata and controls
51 lines (45 loc) · 2.4 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\Tools\CommonProjectItems.targets" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>Agiil.Auth.Impl</PackageId>
<Description>Implementaton logic related to authentication for the Agiil application</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" />
<PackageReference Include="CSF.Utils" Version="6.1.1" />
<PackageReference Include="CSF.ORM" Version="2.0.3" />
<PackageReference Include="CSF.ORM.Entities" Version="2.0.3" />
<PackageReference Include="Iesi.Collections" Version="4.0.0.4000" />
<PackageReference Include="Microsoft.AspNet.Identity.Core" Version="2.2.1" />
<PackageReference Include="Microsoft.AspNet.Identity.Owin" Version="2.2.1" />
<PackageReference Include="Microsoft.Owin" Version="3.0.1" />
<PackageReference Include="Microsoft.Owin.Security" Version="3.0.1" />
<PackageReference Include="Microsoft.Owin.Security.Cookies" Version="3.0.1" />
<PackageReference Include="Microsoft.Owin.Security.OAuth" Version="3.0.1" />
<PackageReference Include="Owin" Version="1.0" />
<PackageReference Include="BrakePedal" Version="1.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Agiil.Auth\Agiil.Auth.csproj" />
<ProjectReference Include="..\Agiil.Domain\Agiil.Domain.csproj" />
<ProjectReference Include="..\Agiil.Domain.Impl\Agiil.Domain.Impl.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Condition=" '$(EnableDefaultEmbeddedResourceItems)' == 'true' " Update="Resources\ExceptionMessages.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>ExceptionMessages.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Condition=" '$(EnableDefaultCompileItems)' == 'true' " Update="Resources\ExceptionMessages.Designer.cs">
<DependentUpon>ExceptionMessages.resx</DependentUpon>
</Compile>
</ItemGroup>
<Import Project="..\Tools\EnableMultiTargetingWithMono.targets" />
</Project>