-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
19 lines (17 loc) · 731 Bytes
/
App.config
File metadata and controls
19 lines (17 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<connectionStrings>
<add name="PharmacyDB"
connectionString="data source=MOSTAFAELSEHY;database=pharmacy;integrated security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
<appSettings>
<add key="ApplicationName" value="Pharmacy Management System" />
<add key="ApplicationVersion" value="2.0.0" />
<add key="DefaultAdminUsername" value="Mostafa" />
<add key="DefaultAdminPassword" value="Mostafa" />
</appSettings>
</configuration>