IRC parsing, tokenization, and state handling in C#
at a1df2ed6b496cfac5770a6bd7e4806ca18bf39a5 13 lines 296 B view raw
1<Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <OutputType>Exe</OutputType> 5 <TargetFramework>net8.0</TargetFramework> 6 <IsPackable>false</IsPackable> 7 </PropertyGroup> 8 9 <ItemGroup> 10 <ProjectReference Include="..\..\IRCTokens\IRCTokens.csproj" /> 11 </ItemGroup> 12 13</Project>