2020-01-11 13:36:14 +00:00
|
|
|
<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>
|
|
|
|
|
2020-01-11 18:32:40 +00:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<DocumentationFile>C:\Users\Thorsten\Downloads\repos\CubicNoise\CubicNoise\CubicNoise.xml</DocumentationFile>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-01-11 13:36:14 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<None Include="..\LICENSE">
|
|
|
|
<Pack>True</Pack>
|
|
|
|
<PackagePath></PackagePath>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|