-
Notifications
You must be signed in to change notification settings - Fork 0
/
Basics.csproj
32 lines (27 loc) · 1.32 KB
/
Basics.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">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Mvc\ActionResultExtension.cs" />
<Compile Remove="Mvc\Helper.cs" />
<Compile Remove="PatternsAndPractices\ServiceCollectionExtension.cs" />
<Compile Remove="Persistence\IDatabaseSeeder.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="2.0.6" />
<PackageReference Include="Microsoft.AspNetCore" Version="2.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="2.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="2.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.2" />
<PackageReference Include="Microsoft.Extensions.Localization" Version="2.1.1" />
<PackageReference Include="MimeKit" Version="2.0.6" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="2.0.0-rc3-final" />
<PackageReference Include="OpenIddict.Validation" Version="2.0.0-rc3-final" />
<PackageReference Include="System.ComponentModel" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Persistence\" />
</ItemGroup>
</Project>