forked from ivaylokenov/MyTested.AspNetCore.Mvc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplicationParts.Controllers.csproj
More file actions
23 lines (19 loc) · 942 Bytes
/
ApplicationParts.Controllers.csproj
File metadata and controls
23 lines (19 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>ApplicationParts.Controllers</AssemblyName>
<PackageId>ApplicationParts.Controllers</PackageId>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ApplicationParts.Models\ApplicationParts.Models.csproj" />
<ProjectReference Include="..\ApplicationParts.Services\ApplicationParts.Services.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.3" />
</ItemGroup>
</Project>