ircsharp/IRCSharp.Tests/IRCSharp.Tests.csproj

32 lines
826 B
XML
Raw Normal View History

2024-04-16 03:17:51 +00:00
<Project Sdk="MSTest.Sdk/3.3.1">
2020-11-10 23:35:21 +00:00
<PropertyGroup>
2023-11-07 22:54:58 +00:00
<TargetFramework>net8.0</TargetFramework>
2024-04-16 03:17:51 +00:00
<ImplicitUsings>true</ImplicitUsings>
2024-04-17 05:01:36 +00:00
<IsPackable>false</IsPackable>
2020-11-10 23:35:21 +00:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="YamlDotNet" Version="15.1.2" />
2020-11-10 23:35:21 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\IRCStates\IRCStates.csproj" />
<ProjectReference Include="..\IRCTokens\IRCTokens.csproj" />
</ItemGroup>
2024-03-26 20:10:54 +00:00
<ItemGroup>
<Using Include="IRCTokens" />
<Using Include="IRCStates" />
<Using Include="System.Text" />
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
</ItemGroup>
2020-11-10 23:35:21 +00:00
<ItemGroup>
2024-04-16 03:17:51 +00:00
<None Update="Tokenization\Data\msg-*.yaml">
2020-11-10 23:35:21 +00:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>