-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCPMS.csproj
77 lines (71 loc) · 2.7 KB
/
CPMS.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows7.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<Description></Description>
<Copyright></Copyright>
<PackageIcon></PackageIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="favicon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
</ItemGroup>
<ItemGroup>
<Compile Update="AdminView\AStatus.cs" />
<Compile Update="AdminView\Components\EditEmployee.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="SGuardView\Components\EditCustomer.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="SGuardView\Components\AddCustomer.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="AdminView\Components\AddEmployee.cs" />
<Compile Update="SGuardView\Components\GetInvoice.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="SGuardView\Components\ReserveView.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="SGuardView\Components\VehicleReserveEMP.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="SGuardView\Components\VehicleReserveCUS.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="AdminView\Invoices.cs" />
<Compile Update="AdminView\Customers.cs" />
<Compile Update="AdminView\Employees.cs" />
<Compile Update="AdminView\Dashboard.cs" />
<Compile Update="LoginView\SGuardLogin.cs" />
<Compile Update="LoginView\AdminLogin.cs" />
<Compile Update="NormalView\Contact.cs" />
<Compile Update="NormalView\About.cs" />
<Compile Update="NormalView\Status.cs" />
<Compile Update="NormalView\Login.cs" />
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Update="SGuardView\GStatus.cs" />
<Compile Update="SGuardView\GCustomers.cs" />
<Compile Update="SGuardView\GDashboard.cs" />
<Compile Update="SGuardView\Vehicles.cs" />
<Compile Update="SGuardView\GInvoices.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>