From fa838c1a7fd940b0e5f2127a4ae3030f620be8bf Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 11 Jan 2020 14:36:14 +0100 Subject: [PATCH] Initial --- CubicNoise.sln | 31 ++++++++++++++++++++++++++ CubicNoise/CubicNoise.csproj | 22 ++++++++++++++++++ CubicNoiseTests/CubicNoiseTests.csproj | 19 ++++++++++++++++ 3 files changed, 72 insertions(+) create mode 100644 CubicNoise.sln create mode 100644 CubicNoise/CubicNoise.csproj create mode 100644 CubicNoiseTests/CubicNoiseTests.csproj diff --git a/CubicNoise.sln b/CubicNoise.sln new file mode 100644 index 0000000..5f83ad3 --- /dev/null +++ b/CubicNoise.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CubicNoise", "CubicNoise\CubicNoise.csproj", "{F7F37856-6952-4EB6-BDC7-221BDDE529CD}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CubicNoiseTests", "CubicNoiseTests\CubicNoiseTests.csproj", "{28AA7CEE-CC12-4CAF-AA8E-82E7B099DEF6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F7F37856-6952-4EB6-BDC7-221BDDE529CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F7F37856-6952-4EB6-BDC7-221BDDE529CD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F7F37856-6952-4EB6-BDC7-221BDDE529CD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F7F37856-6952-4EB6-BDC7-221BDDE529CD}.Release|Any CPU.Build.0 = Release|Any CPU + {28AA7CEE-CC12-4CAF-AA8E-82E7B099DEF6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {28AA7CEE-CC12-4CAF-AA8E-82E7B099DEF6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {28AA7CEE-CC12-4CAF-AA8E-82E7B099DEF6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {28AA7CEE-CC12-4CAF-AA8E-82E7B099DEF6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {45F72213-6F5A-49BC-9FAB-1002E1054DFB} + EndGlobalSection +EndGlobal diff --git a/CubicNoise/CubicNoise.csproj b/CubicNoise/CubicNoise.csproj new file mode 100644 index 0000000..34a562b --- /dev/null +++ b/CubicNoise/CubicNoise.csproj @@ -0,0 +1,22 @@ + + + + netcoreapp3.1 + true + true + Thorsten Sommer + Thorsten Sommer + https://github.com/SommerEngineering/CubicNoise + https://github.com/SommerEngineering/CubicNoise + Noise, Procedural Generation, Cubic Noise + LICENSE + + + + + True + + + + + diff --git a/CubicNoiseTests/CubicNoiseTests.csproj b/CubicNoiseTests/CubicNoiseTests.csproj new file mode 100644 index 0000000..8ead3b8 --- /dev/null +++ b/CubicNoiseTests/CubicNoiseTests.csproj @@ -0,0 +1,19 @@ + + + + netcoreapp3.1 + + false + + + + + + + + + + + + +