Skip to content

Commit

Permalink
Add project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
tashkoskim committed Mar 23, 2023
1 parent 95d08f3 commit eb3bb2c
Show file tree
Hide file tree
Showing 18 changed files with 4,852 additions and 0 deletions.
25 changes: 25 additions & 0 deletions WorkTimeLogger.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32505.173
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkTimeLogger", "WorkTimeLogger\WorkTimeLogger.csproj", "{FED7E779-2A16-42F1-837C-2FFDB1422038}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FED7E779-2A16-42F1-837C-2FFDB1422038}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FED7E779-2A16-42F1-837C-2FFDB1422038}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FED7E779-2A16-42F1-837C-2FFDB1422038}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FED7E779-2A16-42F1-837C-2FFDB1422038}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {10A7BC59-A5BE-46D4-94CF-450FD9868FBA}
EndGlobalSection
EndGlobal
17 changes: 17 additions & 0 deletions WorkTimeLogger/Constants/GeneralConstants.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace WorkTimeLogger.Constants
{
public static class GeneralConstants
{
public static string logsFolder = $"{Path.GetDirectoryName(Application.ExecutablePath)}\\Logs\\";
public static string bckgrImg_btnMeeting1 = $"{Path.GetDirectoryName(Application.ExecutablePath)}\\Images\\btn_Meeting1.png";
public static string bckgrImg_btnMeeting2 = $"{Path.GetDirectoryName(Application.ExecutablePath)}\\Images\\btn_Meeting2.png";
public static string bckgrImg_btnCoding1 = $"{Path.GetDirectoryName(Application.ExecutablePath)}\\Images\\btn_Coding1.png";
public static string bckgrImg_btnCoding2 = $"{Path.GetDirectoryName(Application.ExecutablePath)}\\Images\\btn_Coding2.png";
}
}
191 changes: 191 additions & 0 deletions WorkTimeLogger/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit eb3bb2c

Please sign in to comment.