23 lines
550 B
XML
23 lines
550 B
XML
![]() |
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>WinExe</OutputType>
|
|||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<ImplicitUsings>disable</ImplicitUsings>
|
|||
|
<UseWPF>true</UseWPF>
|
|||
|
<UseWindowsForms>True</UseWindowsForms>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\ST.Library.UI\ST.Library.UI.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Update="Blender\FrmEnumSelect.cs">
|
|||
|
<SubType>Form</SubType>
|
|||
|
</Compile>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|