mirror of
https://github.com/Smaug123/ray-tracing-fsharp
synced 2025-10-15 00:28:41 +00:00
29 lines
904 B
XML
29 lines
904 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="LightRay.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.Drawing.Common" Version="6.0.0-preview.3.21201.4" />
|
|
<PackageReference Include="System.IO.Abstractions" Version="13.2.28" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|