16 lines
No EOL
500 B
XML
16 lines
No EOL
500 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<RootNamespace>fsharp_mandelbrot</RootNamespace>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Fractal.fs" />
|
|
<Compile Include="MandelBrot.fs" />
|
|
<Compile Include="Julia.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Drawing.Common" Version="4.5.1" />
|
|
</ItemGroup>
|
|
</Project> |