This commit is contained in:
Thorsten Sommer 2020-01-11 14:36:14 +01:00
parent 5bbadbac43
commit fa838c1a7f
3 changed files with 72 additions and 0 deletions

31
CubicNoise.sln Normal file
View File

@ -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

View File

@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Thorsten Sommer</Authors>
<Copyright>Thorsten Sommer</Copyright>
<PackageProjectUrl>https://github.com/SommerEngineering/CubicNoise</PackageProjectUrl>
<RepositoryUrl>https://github.com/SommerEngineering/CubicNoise</RepositoryUrl>
<PackageTags>Noise, Procedural Generation, Cubic Noise</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>

View File

@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CubicNoise\CubicNoise.csproj" />
</ItemGroup>
</Project>