18 lines
438 B
XML
18 lines
438 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Input_text.cs">
|
|
<SubType>UserControl</SubType>
|
|
<CustomToolNamespace>TestView</CustomToolNamespace>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project>
|