mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-28 16:06:19 +00:00
35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AssemblyVersion>0.1.0</AssemblyVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Pastel" Version="4.1.0"/>
|
|
<PackageReference Include="YamlDotNet" Version="13.1.1"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="dependencies.yaml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<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"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|