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>
|
2024-03-21 20:06:32 +00:00
|
|
|
<None Update="dependencies.yaml">
|
2023-08-29 04:40:28 +00:00
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
2023-08-03 19:21:06 +00:00
|
|
|
|
2024-03-15 19:13:09 +00:00
|
|
|
<ItemGroup>
|
2024-03-17 19:57:31 +00:00
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
<_Parameter1>$(MSBuildProjectName).Tests</_Parameter1>
|
|
|
|
</AssemblyAttribute>
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
<_Parameter1>$(MSBuildProjectName).Controls.Tests</_Parameter1>
|
|
|
|
</AssemblyAttribute>
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\TUI.Engine\TUI.Engine.csproj"/>
|
2024-03-15 19:13:09 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2023-08-03 19:21:06 +00:00
|
|
|
</Project>
|