teamlead-dashboard/src/TUI/TUI.csproj

27 lines
726 B
XML
Raw Normal View History

2023-08-03 19:21:06 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2023-08-29 04:40:28 +00:00
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyVersion>0.1.0</AssemblyVersion>
</PropertyGroup>
2023-08-03 19:21:06 +00:00
2023-08-29 04:40:28 +00:00
<ItemGroup>
<PackageReference Include="Pastel" Version="4.1.0"/>
<PackageReference Include="YamlDotNet" Version="13.1.1"/>
</ItemGroup>
2023-08-03 19:21:06 +00:00
2023-08-29 04:40:28 +00:00
<ItemGroup>
<None Update="settings.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
2023-08-03 19:21:06 +00:00
2024-03-15 19:13:09 +00:00
<ItemGroup>
<ProjectReference Include="..\TUI.Engine\TUI.Engine.csproj" />
</ItemGroup>
2023-08-03 19:21:06 +00:00
</Project>