ningshuxia
2024-05-22 e15d326bf99045464912aad08d18faa0c667cdb5
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
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <OutputType>WinExe</OutputType>
    <TargetFramework>net6.0-windows</TargetFramework>
    <Nullable>disable</Nullable>
    <UseWindowsForms>true</UseWindowsForms>
    <ImplicitUsings>enable</ImplicitUsings>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="Form1.cs" />
    <Compile Remove="Form1.Designer.cs" />
    <Compile Remove="ValidForm.cs" />
    <Compile Remove="ValidForm.Designer.cs" />
  </ItemGroup>
 
  <ItemGroup>
    <EmbeddedResource Remove="Form1.resx" />
    <EmbeddedResource Remove="ValidForm.resx" />
  </ItemGroup>
 
  <ItemGroup>
    <PackageReference Include="DevExpress.Win.Design" Version="22.2.4" />
    <PackageReference Include="NPOI" Version="2.7.0" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\IStation.Algorithm\IStation.Algorithm.csproj" />
  </ItemGroup>
 
  <ItemGroup>
    <Compile Update="Form2.cs">
      <SubType>Form</SubType>
    </Compile>
  </ItemGroup>
 
</Project>