Last change
on this file was 13f1472, checked in by Danilo <danilo.najkov@…>, 2 years ago |
vip functionallity + menu fields + alergens filtering + google/fb login + email queueing
|
-
Property mode
set to
100644
|
File size:
1.6 KB
|
Line | |
---|
1 | <Project Sdk="Microsoft.NET.Sdk.Web">
|
---|
2 |
|
---|
3 | <PropertyGroup>
|
---|
4 | <TargetFramework>net6.0</TargetFramework>
|
---|
5 | <Nullable>enable</Nullable>
|
---|
6 | <ImplicitUsings>enable</ImplicitUsings>
|
---|
7 | </PropertyGroup>
|
---|
8 |
|
---|
9 | <ItemGroup>
|
---|
10 | <None Include="..\.editorconfig" Link=".editorconfig" />
|
---|
11 | </ItemGroup>
|
---|
12 |
|
---|
13 | <ItemGroup>
|
---|
14 | <PackageReference Include="Google.Apis.Auth" Version="1.57.0" />
|
---|
15 | <PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="6.0.9" />
|
---|
16 | <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.3" />
|
---|
17 | <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.3" />
|
---|
18 | <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.3" />
|
---|
19 | <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.3">
|
---|
20 | <PrivateAssets>all</PrivateAssets>
|
---|
21 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
---|
22 | </PackageReference>
|
---|
23 | <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
---|
24 | <PackageReference Include="Npgsql" Version="6.0.3" />
|
---|
25 | <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.3" />
|
---|
26 | <PackageReference Include="Quartz" Version="3.4.0" />
|
---|
27 | <PackageReference Include="Quartz.Extensions.Hosting" Version="3.4.0" />
|
---|
28 | <PackageReference Include="SendGrid" Version="9.28.0" />
|
---|
29 | <PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
---|
30 | <PackageReference Include="Swashbuckle.Core" Version="5.6.0" />
|
---|
31 | <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.17.0" />
|
---|
32 | </ItemGroup>
|
---|
33 |
|
---|
34 | </Project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.