20 строки
596 B
XML
20 строки
596 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<GenerateFullPaths>True</GenerateFullPaths>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Topten.RichTextKit.Test\Topten.RichTextKit.Test.csproj" />
|
|
<ProjectReference Include="..\Topten.RichTextKit\Topten.RichTextKit.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|