-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLineService.csproj
30 lines (26 loc) · 1.51 KB
/
LineService.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UserSecretsId>aspnet-LineService-8FBBCC61-AA1F-4E78-9B6B-3229771707F5</UserSecretsId>
<CopyRefAssembliesToPublishDirectory>false</CopyRefAssembliesToPublishDirectory>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="3.1.27" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.25" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="3.1.25" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.28" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.25" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.25">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.27" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.5" />
<PackageReference Include="MySql.Data" Version="8.0.31" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="RestSharp" Version="106.15.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Views\NewFolder\" />
</ItemGroup>
</Project>