Skip to content

Commit 906e4fe

Browse files
committed
Introduce TimeTracker.Core
1 parent 2de1297 commit 906e4fe

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

TimeTracker.Core/Class1.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
namespace TimeTracker.Core;
2+
3+
public class Class1
4+
{
5+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
9+
</Project>

TimeTracker.sln

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
#
3+
#
44
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TimeTracker", "TimeTracker\TimeTracker.csproj", "{9B5B958D-5ABE-42CA-AE57-1EDF19DDE07D}"
55
EndProject
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TimeTracker.Server", "TimeTracker.Server\TimeTracker.Server.csproj", "{9D532BBD-5895-461F-AC46-C78A22801F11}"
77
EndProject
8-
Global
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TimeTracker.Core", "TimeTracker.Core\TimeTracker.Core.csproj", "{E46CD9A9-210A-4F7A-9F53-E8AAD80BA919}"
9+
EndProject
10+
Global`
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1012
Debug|Any CPU = Debug|Any CPU
1113
Release|Any CPU = Release|Any CPU
@@ -19,5 +21,9 @@ Global
1921
{9D532BBD-5895-461F-AC46-C78A22801F11}.Debug|Any CPU.Build.0 = Debug|Any CPU
2022
{9D532BBD-5895-461F-AC46-C78A22801F11}.Release|Any CPU.ActiveCfg = Release|Any CPU
2123
{9D532BBD-5895-461F-AC46-C78A22801F11}.Release|Any CPU.Build.0 = Release|Any CPU
24+
{E46CD9A9-210A-4F7A-9F53-E8AAD80BA919}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25+
{E46CD9A9-210A-4F7A-9F53-E8AAD80BA919}.Debug|Any CPU.Build.0 = Debug|Any CPU
26+
{E46CD9A9-210A-4F7A-9F53-E8AAD80BA919}.Release|Any CPU.ActiveCfg = Release|Any CPU
27+
{E46CD9A9-210A-4F7A-9F53-E8AAD80BA919}.Release|Any CPU.Build.0 = Release|Any CPU
2228
EndGlobalSection
2329
EndGlobal

0 commit comments

Comments
 (0)