-
Notifications
You must be signed in to change notification settings - Fork 0
/
Biblioteca.csproj
29 lines (29 loc) · 1.49 KB
/
Biblioteca.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>Biblioteca</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Remove="Views\Usuario\FormCadastro.cshtml" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\lib\fontawesome\webfonts\fa-brands-400.woff2" />
<None Include="wwwroot\lib\fontawesome\webfonts\fa-regular-400.woff2" />
<None Include="wwwroot\lib\fontawesome\webfonts\fa-solid-900.woff2" />
<None Include="wwwroot\lib\fontawesome\webfonts\fa-v4compatibility.woff2" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EntityFramework" Version="6.4.4" />
<PackageReference Include="FluentValidation" Version="11.6.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="7.0.10" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="7.0.9" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.18.1" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.9">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="X.PagedList" Version="8.4.3" />
<PackageReference Include="X.PagedList.Mvc.Core" Version="8.4.3" />
</ItemGroup>
</Project>