Ips.Library.DxpLib.csproj 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Library</OutputType>
  4. <TargetFramework>net7.0-windows</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>disable</Nullable>
  7. <UseWindowsForms>true</UseWindowsForms>
  8. <NoWin32Manifest>true</NoWin32Manifest>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  11. <DebugType>none</DebugType>
  12. <DebugSymbols>false</DebugSymbols>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  15. <NoWarn>1701;1702;CS9057</NoWarn>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  18. <NoWarn>1701;1702;CS9057</NoWarn>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <PackageReference Include="DevExpress.Document.Processor" Version="23.2.3" PrivateAssets="all" />
  22. <PackageReference Include="DevExpress.Win.Design" Version="23.2.3" PrivateAssets="all" />
  23. <PackageReference Include="System.Data.SQLite.Core" Version="1.0.119" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <ProjectReference Include="..\Ips.Library.Basic\Ips.Library.Basic.csproj" />
  27. <ProjectReference Include="..\Ips.Library.CliLib\Ips.Library.CliLib.csproj" />
  28. <ProjectReference Include="..\Ips.Library.Entity\Ips.Library.Entity.csproj" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <Compile Update="Properties\Resources.Designer.cs">
  32. <DesignTime>True</DesignTime>
  33. <AutoGen>True</AutoGen>
  34. <DependentUpon>Resources.resx</DependentUpon>
  35. </Compile>
  36. </ItemGroup>
  37. <ItemGroup>
  38. <EmbeddedResource Update="Properties\Resources.resx">
  39. <Generator>ResXFileCodeGenerator</Generator>
  40. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  41. </EmbeddedResource>
  42. </ItemGroup>
  43. </Project>