-
Notifications
You must be signed in to change notification settings - Fork 1
/
SlickTicket.csproj
31 lines (27 loc) · 1.56 KB
/
SlickTicket.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<UserSecretsId>aspnet-SlickTicket-09D69109-7975-4E79-8B05-6549840A318A</UserSecretsId>
<CopyRefAssembliesToPublishDirectory>false</CopyRefAssembliesToPublishDirectory>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="2.12.0" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="5.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="5.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="5.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.6" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.2" />
<PackageReference Include="MimeKit" Version="2.12.0" />
<PackageReference Include="Npgsql" Version="5.0.5" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="5.0.6" />
<PackageReference Include="X.PagedList" Version="8.1.0" />
<PackageReference Include="X.PagedList.Mvc.Core" Version="8.1.0" />
<PackageReference Include="X.PagedList.Web.Common" Version="8.0.7" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\img\png\" />
<Folder Include="wwwroot\plugins\" />
</ItemGroup>
</Project>