mirror of
https://github.com/Smaug123/ray-tracing-fsharp
synced 2025-10-11 23:08:40 +00:00
27 lines
769 B
XML
27 lines
769 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Float.fs" />
|
|
<Compile Include="Point.fs" />
|
|
<Compile Include="Pixel.fs" />
|
|
<Compile Include="Domain.fs" />
|
|
<Compile Include="Ray.fsi" />
|
|
<Compile Include="Ray.fs" />
|
|
<Compile Include="Plane.fs" />
|
|
<Compile Include="Sphere.fs" />
|
|
<Compile Include="InfinitePlane.fs" />
|
|
<Compile Include="ImageOutput.fs" />
|
|
<Compile Include="Camera.fs" />
|
|
<Compile Include="Scene.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.IO.Abstractions" Version="13.2.28" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|