17 lines
427 B
XML
17 lines
427 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<WarnOn>FS3559</WarnOn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="StepDag.fs" />
|
|
<Compile Include="Pipeline.fs" />
|
|
<Compile Include="Program.fs"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|