-
-
Notifications
You must be signed in to change notification settings - Fork 750
Expand file tree
/
Copy pathInfrastructure.csproj
More file actions
42 lines (39 loc) · 1.94 KB
/
Infrastructure.csproj
File metadata and controls
42 lines (39 loc) · 1.94 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>BlazorHero.CleanArchitecture.Infrastructure</RootNamespace>
<AssemblyName>BlazorHero.CleanArchitecture.Infrastructure</AssemblyName>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<!--<ItemGroup>
<Compile Remove="Constants\**" />
<Compile Remove="Identity\**" />
<Compile Remove="Persistence\**" />
<EmbeddedResource Remove="Constants\**" />
<EmbeddedResource Remove="Identity\**" />
<EmbeddedResource Remove="Persistence\**" />
<None Remove="Constants\**" />
<None Remove="Identity\**" />
<None Remove="Persistence\**" />
</ItemGroup>-->
<ItemGroup>
<PackageReference Include="AutoMapper" Version="11.0.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="11.0.0" />
<PackageReference Include="Blazored.LocalStorage" Version="4.2.0" />
<PackageReference Include="EPPlus" Version="6.0.6" />
<PackageReference Include="Hangfire.Core" Version="1.7.30" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="6.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Application\Application.csproj" />
<ProjectReference Include="..\Shared\Shared.csproj" />
</ItemGroup>
</Project>