-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathBlazorcrud.Server.csproj
More file actions
29 lines (29 loc) · 1.3 KB
/
Copy pathBlazorcrud.Server.csproj
File metadata and controls
29 lines (29 loc) · 1.3 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
<PackageReference Include="Bogus" Version="35.6.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.0" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="8.0.0" />
<PackageReference Include="Quartz.Extensions.Hosting" Version="3.13.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Blazorcrud.Client\Blazorcrud.Client.csproj" />
<ProjectReference Include="..\Blazorcrud.Shared\Blazorcrud.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Blazorcrud.Server.IntegrationTests" />
</ItemGroup>
</Project>