Skip to content

Commit 99e25c7

Browse files
author
kl3mta3
committed
Add project files.
1 parent f5c86ab commit 99e25c7

13 files changed

+761
-0
lines changed

IT Time Tracker.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.10.34916.146
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IT Time Tracker", "IT Time Tracker\IT Time Tracker.csproj", "{A4C4DC63-3536-4F6A-ADEF-E437055FF0E3}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{A4C4DC63-3536-4F6A-ADEF-E437055FF0E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{A4C4DC63-3536-4F6A-ADEF-E437055FF0E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{A4C4DC63-3536-4F6A-ADEF-E437055FF0E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{A4C4DC63-3536-4F6A-ADEF-E437055FF0E3}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {247658F6-FA53-4F84-8983-CAAE4E3476FB}
24+
EndGlobalSection
25+
EndGlobal

IT Time Tracker/App.xaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Application x:Class="IT_Time_Tracker.App"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:local="clr-namespace:IT_Time_Tracker"
5+
StartupUri="MainWindow.xaml">
6+
<Application.Resources>
7+
8+
</Application.Resources>
9+
</Application>

IT Time Tracker/App.xaml.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System.Configuration;
2+
using System.Data;
3+
using System.Windows;
4+
5+
namespace IT_Time_Tracker
6+
{
7+
/// <summary>
8+
/// Interaction logic for App.xaml
9+
/// </summary>
10+
public partial class App : Application
11+
{
12+
}
13+
14+
}

IT Time Tracker/AssemblyInfo.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using System.Windows;
2+
3+
[assembly: ThemeInfo(
4+
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
5+
//(used if a resource is not found in the page,
6+
// or application resource dictionaries)
7+
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
8+
//(used if a resource is not found in the page,
9+
// app, or any theme specific resource dictionaries)
10+
)]
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>WinExe</OutputType>
5+
<TargetFramework>net8.0-windows</TargetFramework>
6+
<RootNamespace>ITSC_Time_Tracker</RootNamespace>
7+
<Nullable>enable</Nullable>
8+
<ImplicitUsings>enable</ImplicitUsings>
9+
<UseWPF>true</UseWPF>
10+
<ApplicationIcon>time_tracker_icon.ico</ApplicationIcon>
11+
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<None Remove="neon_beach_desktop_8k_paper9.png" />
15+
<None Remove="neon_Mountain_desktop_8k.png" />
16+
<None Remove="OvalButtonLG_UI.png" />
17+
<None Remove="RoundButton_UI.png" />
18+
<None Remove="SendButton_UI.png" />
19+
</ItemGroup>
20+
21+
<ItemGroup>
22+
<Content Include="time_tracker_icon.ico" />
23+
</ItemGroup>
24+
25+
<ItemGroup>
26+
<Resource Include="neon_beach_desktop_8k_paper9.png" />
27+
<Resource Include="neon_Mountain_desktop_8k.png" />
28+
<Resource Include="OvalButtonLG_UI.png" />
29+
<Resource Include="RoundButton_UI.png" />
30+
<Resource Include="SendButton_UI.png" />
31+
</ItemGroup>
32+
33+
</Project>

IT Time Tracker/MainWindow.xaml

Lines changed: 231 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)