HandyTool.csproj 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <UseWPF>true</UseWPF>
  6. <ApplicationIcon>ai.ico</ApplicationIcon>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <OutputPath>..\Bin\handytool</OutputPath>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <OutputPath>..\Bin\handytool</OutputPath>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="Aspose.Cells" Version="21.1.0" />
  16. <PackageReference Include="Hardcodet.Wpf.TaskbarNotification.Core" Version="2.0.0" />
  17. <PackageReference Include="Hprose.RPC" Version="3.0.20" />
  18. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  19. <PackageReference Include="Ookii.Dialogs.Wpf.NETCore" Version="2.1.0" />
  20. <PackageReference Include="SixLabors.ImageSharp" Version="1.0.3" />
  21. <PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\AIPlatform.ClientConfig\AIPlatform.ClientConfig.csproj" />
  25. <ProjectReference Include="..\AIPlatform.Protocol\AIPlatform.Protocol.csproj" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Resource Include="ai.ico" />
  29. <Resource Include="Resources\Images\ai.png" />
  30. <Resource Include="Resources\Images\ComboChoice.png" />
  31. <Resource Include="Resources\Images\ComboUnChoice.png" />
  32. <Resource Include="Resources\Images\labeled.png" />
  33. <Resource Include="Resources\Images\SearchBlack.png" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Page Update="CreateImageBatchWindow.xaml">
  37. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  38. <SubType>Designer</SubType>
  39. </Page>
  40. </ItemGroup>
  41. </Project>