Shuxia Ning
2024-09-10 049f546f25cabfb5b08e29c54f49d61a544b0395
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<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>