CompilerDesignIFLR1/CompilerDesignIflr1/CompilerDesignIflr1.csproj

23 lines
604 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Update="files\code">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="files\if-grammar.grammar">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="files\translateFile">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>