From f2fa754faf18236f2955ad2a08304f1385543f9a Mon Sep 17 00:00:00 2001 From: Markus Hjort Date: Mon, 27 Nov 2017 19:26:39 +0200 Subject: [PATCH] Initial commit --- .gitignore | 5 +++++ src/AivoTreeStatus.cs | 9 +++++++++ src/aivo.csproj | 47 +++++++++++++++++++++++++++++++++++++++++++ src/src.sln | 22 ++++++++++++++++++++ 4 files changed, 83 insertions(+) create mode 100644 .gitignore create mode 100644 src/AivoTreeStatus.cs create mode 100644 src/aivo.csproj create mode 100644 src/src.sln diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1c0ecc4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +*.suo +obj/ +bin/ +*.nupkg +*.user diff --git a/src/AivoTreeStatus.cs b/src/AivoTreeStatus.cs new file mode 100644 index 0000000..30cb1c7 --- /dev/null +++ b/src/AivoTreeStatus.cs @@ -0,0 +1,9 @@ +namespace AivoTree +{ + public enum AivoTreeStatus + { + Success, + Failure, + Running + } +} \ No newline at end of file diff --git a/src/aivo.csproj b/src/aivo.csproj new file mode 100644 index 0000000..7d5d574 --- /dev/null +++ b/src/aivo.csproj @@ -0,0 +1,47 @@ + + + + + Debug + AnyCPU + {9593E956-9720-48E4-B1C3-6A906AAEE949} + {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Library + Properties + aivo + aivo + v3.5 + 512 + 5 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + \ No newline at end of file diff --git a/src/src.sln b/src/src.sln new file mode 100644 index 0000000..9940a30 --- /dev/null +++ b/src/src.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.0.0 +MinimumVisualStudioVersion = 10.0.0.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "aivo", "aivo.csproj", "{9593E956-9720-48E4-B1C3-6A906AAEE949}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9593E956-9720-48E4-B1C3-6A906AAEE949}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9593E956-9720-48E4-B1C3-6A906AAEE949}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9593E956-9720-48E4-B1C3-6A906AAEE949}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9593E956-9720-48E4-B1C3-6A906AAEE949}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal