-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeightmaps.fsproj
More file actions
27 lines (24 loc) · 783 Bytes
/
Copy pathHeightmaps.fsproj
File metadata and controls
27 lines (24 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Content Include="diamond-square.jpg" />
<Content Include="perlin.jpg" />
<Content Include="simplex.jpg" />
<None Include=".gitignore" />
<None Include="LICENSE" />
<None Include="README.md" />
<Compile Include="BMP.fs" />
<Compile Include="PPM.fs" />
<Compile Include="SDL.fs" />
<Compile Include="DiamondSquare.fs" />
<Compile Include="Perlin.fs" />
<Compile Include="Simplex.fs" />
<Compile Include="Program.fs" />
<None Include="SDL2.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>