<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
<OutputType>WinExe</OutputType>
|
<TargetFramework>net6.0-windows</TargetFramework>
|
<Nullable>disable</Nullable>
|
<UseWindowsForms>true</UseWindowsForms>
|
<ImplicitUsings>enable</ImplicitUsings>
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
</PropertyGroup>
|
|
<ItemGroup>
|
<PackageReference Include="DevExpress.Win.Design" Version="23.2.4" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<ProjectReference Include="..\IStation.Test.Init\IStation.Test.Init.csproj" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<Compile Update="Core\Wait\WaitFormStyle1.cs">
|
<SubType>Form</SubType>
|
</Compile>
|
<Compile Update="Core\Wait\WaitFormStyle2.cs">
|
<SubType>Form</SubType>
|
</Compile>
|
<Compile Update="VerifyViewfrm.cs">
|
<SubType>Form</SubType>
|
</Compile>
|
<Compile Update="View\VerifyView.cs">
|
<SubType>UserControl</SubType>
|
</Compile>
|
</ItemGroup>
|
|
</Project>
|