finn-lang/finn.csproj

11 lines
371 B
XML
Raw Normal View History

2023-06-08 13:26:41 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>Finn</RootNamespace>
<Nullable>enable</Nullable>
</PropertyGroup>
2023-06-25 01:15:37 +00:00
<Target Name="GenerateASTClasses" BeforeTargets="BeforeBuild">
<Exec Command="dotnet fsi .\ast_classes.fsx" />
</Target>
2023-06-08 13:26:41 +00:00
</Project>