-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implemented string interpolation to reduce code
- Loading branch information
Showing
10 changed files
with
593 additions
and
523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,39 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<appSettings> | ||
<add key="ConString" value="SqlServer"/> | ||
<add key="ProjectName" value="STS"/> | ||
<add key="ProjectName" value="Test"/> | ||
|
||
<!-- For Oracle Database --> | ||
<add key="ConString_Oracle" value="Provider=OraOLEDB.Oracle;Data Source=tvl;User ID=wims_p4;Password=wims_p4;" /> | ||
<add key="ConString_Oracle" value="Provider=OraOLEDB.Oracle;Data Source=tvl;User ID=wims_p4;Password=wims_p4;"/> | ||
<add key="PkColName" value="NUMID"/> | ||
<add key="RecordCreatorColName" value="STRUID"/> | ||
<add key="RecordModifierColName" value="STRLASTUID"/> | ||
<add key="RecordCreateDateColName" value="DTUDT"/> | ||
<add key="RecordModifiedDateColName" value="DTLASTUDT"/> | ||
|
||
<!--For Sql Server Database--> | ||
<add key="ConString_SqlServer" value="Provider=sqloledb;Data Source=PC69;Initial Catalog=STS;User Id=sa;Password=sa1234;" /> | ||
<add key="PkColName" value="intPK"/> | ||
<!--<add key="ConString_SqlServer" value="Provider=sqloledb;Data Source=<ServerName>;Initial Catalog=<DBName>;User Id=<UserId>;Password=<Password>;"/>--> | ||
<add key="ConString_SqlServer" value="Provider=sqloledb;Data Source=(LocalDB)\MSSQLLocalDB;Initial Catalog=Test;Integrated Security=SSPI;"/> | ||
<add key="PkColName" value="intPK"/> | ||
<add key="RecordCreatorColName" value="IUser"/> | ||
<add key="RecordModifierColName" value="EUser"/> | ||
<add key="RecordCreateDateColName" value="IDate"/> | ||
<add key="RecordModifiedDateColName" value="EDate"/> | ||
|
||
<add key="SaveDirectoty" value="D:\\CodeGeneratorFiles\\" /> | ||
<add key="ClientSettingsProvider.ServiceUri" value="" /> | ||
<add key="SaveDirectoty" value="D:\\CodeGeneratorFiles\\"/> | ||
<add key="ClientSettingsProvider.ServiceUri" value=""/> | ||
</appSettings> | ||
<system.web> | ||
<membership defaultProvider="ClientAuthenticationMembershipProvider"> | ||
<providers> | ||
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" /> | ||
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri=""/> | ||
</providers> | ||
</membership> | ||
<roleManager defaultProvider="ClientRoleProvider" enabled="true"> | ||
<providers> | ||
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" /> | ||
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400"/> | ||
</providers> | ||
</roleManager> | ||
</system.web> | ||
</configuration> | ||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/></startup></configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.