duheng
2024-04-16 668e7746a6fbe30cba78bffe37c9ce9b9ed9a4fe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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>
    <PackageReference Include="DevExpress.Win.Design" Version="22.2.4" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\WinFrm\ISupply.WinFrm.Core\ISupply.WinFrm.Core.csproj" />
    <ProjectReference Include="..\WinFrm\ISupply.WinFrm.Main\ISupply.WinFrm.Main.csproj" />
  </ItemGroup>
 
</Project>