Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,20 @@ $RECYCLE.BIN/
# =========================
# Operating System Files
# =========================
/WebTimeSheetManagementDatabase/obj/Debug
/WebTimeSheetManagementDatabase/bin/Debug
/.vs/WebTimeSheetManagement
/WebTimeSheetManagementDatabase/WebTimeSheetManagementDatabase.jfm
/WebTimeSheetManagementDatabase/WebTimeSheetManagementDatabase.dbmdl
/WebTimeSheetManagementDatabase/WebTimeSheetManagementDatabase.sqlproj.user
/WebTimeSheetManagement/bin
/WebTimeSheetManagement/obj/Debug
/WebTimeSheetManagement.Concrete/obj/Debug
/WebTimeSheetManagement.Interface/obj/Debug
/WebTimeSheetManagement.Models/obj/Debug
/WebTimeSheetManagementDatabase/Import Schema Logs
/packages/Dapper.2.0.78
/WebTimeSheetManagement.Concrete/bin/Debug
/WebTimeSheetManagement.Interface/bin/Debug
/WebTimeSheetManagement.Models/bin/Debug
/WebTimeSheetManagement/*.user
Binary file removed .vs/WebTimeSheetManagement/v14/.suo
Binary file not shown.
1,055 changes: 0 additions & 1,055 deletions .vs/config/applicationhost.config

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# WebTimeSheetManagement

<b>Basic Timesheet Application ASP.NET MVC 5</b>
<b>Timesheet Application ASP.NET MVC 5</b>

<img src="https://github.com/saineshwar/WebTimeSheetManagement/blob/master/Timesheetimg.png?raw=true" alt="Banner" title="Banner" style="max-width:100%;">

Expand Down
Binary file removed TimesheetDB.rar
Binary file not shown.
Binary file removed TimesheetDB.sql
Binary file not shown.
14 changes: 7 additions & 7 deletions WebTimeSheetManagement.Concrete/App.config
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
</configSections>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v12.0" />
<parameter value="v12.0"/>
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
</providers>
</entityFramework>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
<assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/></startup></configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>WebTimeSheetManagement.Concrete</RootNamespace>
<AssemblyName>WebTimeSheetManagement.Concrete</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
Binary file not shown.
Loading