-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseServerTest.csproj
More file actions
27 lines (22 loc) · 1.04 KB
/
BaseServerTest.csproj
File metadata and controls
27 lines (22 loc) · 1.04 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-BaseServerTest-5b94272a-67cb-4f79-a058-0efe64c03959</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DevExpress.Blazor" Version="24.1.4" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BaseServerTest.Shared\BaseServerTest.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Data\Migrations\" />
</ItemGroup>
</Project>