diff --git a/src/Program.cs b/src/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/src/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!"); diff --git a/src/kMeans.csproj b/src/kMeans.csproj new file mode 100644 index 0000000..74abf5c --- /dev/null +++ b/src/kMeans.csproj @@ -0,0 +1,10 @@ + + + + Exe + net6.0 + enable + enable + + + diff --git a/src/kMeans.sln b/src/kMeans.sln new file mode 100644 index 0000000..c3cb3c3 --- /dev/null +++ b/src/kMeans.sln @@ -0,0 +1,14 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30114.105 +MinimumVisualStudioVersion = 10.0.40219.1 +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal