11 lines
371 B
XML
11 lines
371 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<RootNamespace>Finn</RootNamespace>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<Target Name="GenerateASTClasses" BeforeTargets="BeforeBuild">
|
|
<Exec Command="dotnet fsi .\ast_classes.fsx" />
|
|
</Target>
|
|
</Project> |