-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathApplicationParts.Controllers.csproj
More file actions
23 lines (19 loc) · 993 Bytes
/
ApplicationParts.Controllers.csproj
File metadata and controls
23 lines (19 loc) · 993 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>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<AssemblyName>ApplicationParts.Controllers</AssemblyName>
<PackageId>ApplicationParts.Controllers</PackageId>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ApplicationParts.Models\ApplicationParts.Models.csproj" />
<ProjectReference Include="..\ApplicationParts.Services\ApplicationParts.Services.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.*" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="2.2.*" />
</ItemGroup>
</Project>