CompilerDesignIFLR1/CompilerDesignIflr1/CompilerDesignIflr1.csproj

20 lines
492 B
XML
Raw Normal View History

2024-12-20 20:20:34 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2024-12-23 01:42:58 +08:00
<ItemGroup>
<None Update="files\code">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="files\if-grammar.grammar">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
2024-12-20 20:20:34 +08:00
</Project>