Ips.Adc.WadTool.csproj 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net7.0-windows</TargetFramework>
  5. <Nullable>disable</Nullable>
  6. <UseWindowsForms>true</UseWindowsForms>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <AssemblyName>WadTool</AssemblyName>
  9. <ApplicationIcon>wad.ico</ApplicationIcon>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <DebugType>none</DebugType>
  13. <DebugSymbols>false</DebugSymbols>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  16. <NoWarn>1701;1702;CS9057;</NoWarn>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  19. <NoWarn>1701;1702;CS9057;</NoWarn>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <Content Include="wad.ico" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <PackageReference Include="DevExpress.Win.Design" Version="23.2.3" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\..\..\ipslib\Ips.Library.Basic\Ips.Library.Basic.csproj" />
  29. <ProjectReference Include="..\..\..\ipslib\Ips.Library.CliLib\Ips.Library.CliLib.csproj" />
  30. <ProjectReference Include="..\..\..\ipslib\Ips.Library.DxpLib\Ips.Library.DxpLib.csproj" />
  31. <ProjectReference Include="..\..\..\ipslib\Ips.Library.Entity\Ips.Library.Entity.csproj" />
  32. <ProjectReference Include="..\..\..\ipslib\Ips.Library.LocLib\Ips.Library.LocLib.csproj" />
  33. </ItemGroup>
  34. <Target Name="AddPublishIpsCli" AfterTargets="Publish">
  35. <!--<Exec Command="xcopy &quot;$(TargetDir)ipscli\*.*&quot; &quot;$(PublishDir)ipscli&quot; /E /Y /I /Q /R&#xD;&#xA;" />-->
  36. <Exec Command="del &quot;$(PublishDir)*.pdb&quot; /F /Q" Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'" />
  37. </Target>
  38. </Project>