This repository was archived by the owner on Aug 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTicTacToe.sln
More file actions
53 lines (53 loc) · 3.21 KB
/
TicTacToe.sln
File metadata and controls
53 lines (53 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TicTacToe.Models", "TicTacToe.Models\TicTacToe.Models.csproj", "{9297F892-4E7C-47CA-908B-41ECC8772486}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TicTacToe.Data", "TicTacToe.Data\TicTacToe.Data.csproj", "{64BDED4C-9337-433F-BA05-F79AE3309D0A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TicTacToe.GameLogic", "TicTacToe.GameLogic\TicTacToe.GameLogic.csproj", "{62ABCA11-87F8-4392-A634-28910D103625}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TicTacToe.Tests", "TicTacToe.Tests\TicTacToe.Tests.csproj", "{4128706D-C5E9-4887-9480-100475DD20F4}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{0478E3A1-F6DD-4FA7-BCBE-0CBF681CA866}"
ProjectSection(SolutionItems) = preProject
.nuget\NuGet.Config = .nuget\NuGet.Config
.nuget\NuGet.exe = .nuget\NuGet.exe
.nuget\NuGet.targets = .nuget\NuGet.targets
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TicTacToe.Web", "TicTacToe.Web\TicTacToe.Web.csproj", "{51CE55A9-4BAE-42A4-98AC-59BBF7C2943F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9297F892-4E7C-47CA-908B-41ECC8772486}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9297F892-4E7C-47CA-908B-41ECC8772486}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9297F892-4E7C-47CA-908B-41ECC8772486}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9297F892-4E7C-47CA-908B-41ECC8772486}.Release|Any CPU.Build.0 = Release|Any CPU
{64BDED4C-9337-433F-BA05-F79AE3309D0A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{64BDED4C-9337-433F-BA05-F79AE3309D0A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{64BDED4C-9337-433F-BA05-F79AE3309D0A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{64BDED4C-9337-433F-BA05-F79AE3309D0A}.Release|Any CPU.Build.0 = Release|Any CPU
{62ABCA11-87F8-4392-A634-28910D103625}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{62ABCA11-87F8-4392-A634-28910D103625}.Debug|Any CPU.Build.0 = Debug|Any CPU
{62ABCA11-87F8-4392-A634-28910D103625}.Release|Any CPU.ActiveCfg = Release|Any CPU
{62ABCA11-87F8-4392-A634-28910D103625}.Release|Any CPU.Build.0 = Release|Any CPU
{4128706D-C5E9-4887-9480-100475DD20F4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4128706D-C5E9-4887-9480-100475DD20F4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4128706D-C5E9-4887-9480-100475DD20F4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4128706D-C5E9-4887-9480-100475DD20F4}.Release|Any CPU.Build.0 = Release|Any CPU
{51CE55A9-4BAE-42A4-98AC-59BBF7C2943F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{51CE55A9-4BAE-42A4-98AC-59BBF7C2943F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{51CE55A9-4BAE-42A4-98AC-59BBF7C2943F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{51CE55A9-4BAE-42A4-98AC-59BBF7C2943F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal