12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- <UseWPF>true</UseWPF>
- <ApplicationIcon>ai.ico</ApplicationIcon>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <OutputPath>..\Bin\handytool</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <OutputPath>..\Bin\handytool</OutputPath>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Aspose.Cells" Version="21.1.0" />
- <PackageReference Include="Hardcodet.Wpf.TaskbarNotification.Core" Version="2.0.0" />
- <PackageReference Include="Hprose.RPC" Version="3.0.20" />
- <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
- <PackageReference Include="Ookii.Dialogs.Wpf.NETCore" Version="2.1.0" />
- <PackageReference Include="SixLabors.ImageSharp" Version="1.0.3" />
- <PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\AIPlatform.ClientConfig\AIPlatform.ClientConfig.csproj" />
- <ProjectReference Include="..\AIPlatform.Protocol\AIPlatform.Protocol.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Resource Include="ai.ico" />
- <Resource Include="Resources\Images\ai.png" />
- <Resource Include="Resources\Images\ComboChoice.png" />
- <Resource Include="Resources\Images\ComboUnChoice.png" />
- <Resource Include="Resources\Images\labeled.png" />
- <Resource Include="Resources\Images\SearchBlack.png" />
- </ItemGroup>
- <ItemGroup>
- <Page Update="CreateImageBatchWindow.xaml">
- <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
- <SubType>Designer</SubType>
- </Page>
- </ItemGroup>
- </Project>
|