-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmployeeManagement.csproj
More file actions
40 lines (35 loc) · 1.94 KB
/
EmployeeManagement.csproj
File metadata and controls
40 lines (35 loc) · 1.94 KB
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
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AspNetCoreHostingModel>OutOfprocess</AspNetCoreHostingModel>
<UserSecretsId>ca2e7ed0-38ef-4117-a58f-2f6cd5f6e86c</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Migrations\20220105005109_photopathcolumn.cs" />
<Compile Remove="Migrations\20220105005109_photopathcolumn.Designer.cs" />
<Compile Remove="Migrations\20220105005226_someproperty.cs" />
<Compile Remove="Migrations\20220105005226_someproperty.Designer.cs" />
<Compile Remove="Migrations\20220105005610_AddPhotoPathColumn.cs" />
<Compile Remove="Migrations\20220105005610_AddPhotoPathColumn.Designer.cs" />
<Compile Remove="Migrations\20220105005817_addsomeprop.cs" />
<Compile Remove="Migrations\20220105005817_addsomeprop.Designer.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.Facebook" Version="3.1.22" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="3.1.22" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.22" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.22" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.22" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.22">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.5" />
<PackageReference Include="NLog.Web.AspNetCore" Version="4.14.0" />
</ItemGroup>
<ItemGroup>
<Content Update="nlog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>