-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOeuvre.Modules.IdentityAccess.Application.csproj
More file actions
35 lines (33 loc) · 1.7 KB
/
Copy pathOeuvre.Modules.IdentityAccess.Application.csproj
File metadata and controls
35 lines (33 loc) · 1.7 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Configuration\**" />
<Compile Remove="UserRegistration\**" />
<EmbeddedResource Remove="Configuration\**" />
<EmbeddedResource Remove="UserRegistration\**" />
<None Remove="Configuration\**" />
<None Remove="UserRegistration\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Class1.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" Version="8.6.2" />
<PackageReference Include="IdentityServer4" Version="4.0.4" />
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="3.0.1" />
<PackageReference Include="MediatR" Version="8.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Serilog" Version="2.9.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Domainia\Domaina.Application\Domaina.Application.csproj" />
<ProjectReference Include="..\..\..\Domainia\Domaina.CQRS\Domaina.CQRS.csproj" />
<ProjectReference Include="..\..\..\Domainia\Domaina.Infrastructure.EMails\Domaina.Infrastructure.EMails.csproj" />
<ProjectReference Include="..\..\..\Domainia\Domaina.Infrastructure\Domaina.Infrastructure.csproj" />
<ProjectReference Include="..\..\..\Domainia\Domania.Security\Domania.Security.csproj" />
<ProjectReference Include="..\Oeuvre.Modules.IdentityAccess.Domain\Oeuvre.Modules.IdentityAccess.Domain.csproj" />
<ProjectReference Include="..\Oeuvre.Modules.IdentityAccess.IntegrationEvents\Oeuvre.Modules.IdentityAccess.IntegrationEvents.csproj" />
</ItemGroup>
</Project>