-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGate Pass management.csproj
41 lines (35 loc) · 1.5 KB
/
Gate Pass management.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
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>Gate_Pass_management</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Views\NewFolder1\**" />
<Content Remove="Views\NewFolder1\**" />
<EmbeddedResource Remove="Views\NewFolder1\**" />
<None Remove="Views\NewFolder1\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Migrations\20230427112148_second.cs" />
<Compile Remove="Migrations\20230427112148_second.Designer.cs" />
<Compile Remove="Migrations\20230427112221_third.cs" />
<Compile Remove="Migrations\20230427112221_third.Designer.cs" />
<Compile Remove="Models\PageinatedList.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="Images\Logo.jpg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EntityFramework" Version="6.4.4" />
<PackageReference Include="EPPlus" Version="6.2.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="PagedList.Mvc" Version="4.5.0" />
</ItemGroup>
</Project>