mirror of
https://github.com/Smaug123/ray-tracing-fsharp
synced 2025-10-09 13:58:39 +00:00
24 lines
610 B
XML
24 lines
610 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="LoadImage.fs" />
|
|
<Compile Include="SampleImages.fs" />
|
|
<Compile Include="Program.fs" />
|
|
<EmbeddedResource Include="earthmap.jpg" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\RayTracing\RayTracing.fsproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Spectre.Console" Version="0.49.2-preview.0.9" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|