-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrivateMessenger.csproj
32 lines (27 loc) · 1.43 KB
/
PrivateMessenger.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
30
31
32
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="10.1.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.1.1" />
<PackageReference Include="AWSSDK.Core" Version="3.7.3.15" />
<PackageReference Include="BlazorInputFile" Version="0.1.1-preview-00002" />
<PackageReference Include="Microsoft.AspNet.SignalR.Core" Version="2.4.2" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.18" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="3.1.18" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="3.1.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.18">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.5" />
</ItemGroup>
<ItemGroup>
<Folder Include="Areas\Identity\Data\" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\Scroll.js" />
</ItemGroup>
</Project>