IRC parsing, tokenization, and state handling in C#
1<Project Sdk="MSTest.Sdk/3.3.1">
2
3 <PropertyGroup>
4 <TargetFramework>net8.0</TargetFramework>
5 <ImplicitUsings>true</ImplicitUsings>
6 <IsPackable>false</IsPackable>
7 </PropertyGroup>
8
9 <ItemGroup>
10 <PackageReference Include="YamlDotNet" Version="15.1.2" />
11 </ItemGroup>
12
13 <ItemGroup>
14 <ProjectReference Include="..\IRCStates\IRCStates.csproj" />
15 <ProjectReference Include="..\IRCTokens\IRCTokens.csproj" />
16 </ItemGroup>
17
18 <ItemGroup>
19 <Using Include="IRCTokens" />
20 <Using Include="IRCStates" />
21 <Using Include="System.Text" />
22 <Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
23 </ItemGroup>
24
25 <ItemGroup>
26 <None Update="Tokenization\Data\msg-*.yaml">
27 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
28 </None>
29 </ItemGroup>
30
31</Project>