2023-09-21 20:49:36 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-09-21 23:28:05 +04:00
|
|
|
|
<ItemGroup>
|
2023-10-20 09:00:04 +04:00
|
|
|
|
<PackageReference Include="PDFsharp-MigraDoc" Version="1.50.5147" />
|
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="VisualComponents\Input_text.cs">
|
2023-10-06 02:36:27 +04:00
|
|
|
|
<SubType>UserControl</SubType>
|
|
|
|
|
<CustomToolNamespace>TestView</CustomToolNamespace>
|
|
|
|
|
</Compile>
|
2023-09-21 23:28:05 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-10-06 02:36:27 +04:00
|
|
|
|
</Project>
|