-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathHwProj.Models.csproj
More file actions
26 lines (21 loc) · 933 Bytes
/
HwProj.Models.csproj
File metadata and controls
26 lines (21 loc) · 933 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<LangVersion>$(CSharpLanguageVersion)</LangVersion>
<Nullable>$(NullableReferenceTypes)</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.2.3" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="2.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\HwProj.EventBus\HwProj.EventBus.Client\HwProj.EventBus.Client.csproj" />
<ProjectReference Include="..\HwProj.Repositories\HwProj.Repositories.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="CoursesService" />
<Folder Include="Events\" />
</ItemGroup>
</Project>