vCloud.GeneratePackages.Tool.csproj 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <UseWPF>true</UseWPF>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <OutputPath>..\..\Bin\GeneratePackagesTool</OutputPath>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  11. <OutputPath>..\..\Bin\GeneratePackagesTool</OutputPath>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Newtonsoft.Json" Version="12.0.3">
  15. <GeneratePathProperty>false</GeneratePathProperty>
  16. </PackageReference>
  17. </ItemGroup>
  18. <ItemGroup>
  19. <None Remove="Images\compressed.png" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <EmbeddedResource Include="Images\compressed.png" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ProjectReference Include="..\..\Common\Vinno.IUS.Common.Standard\Vinno.IUS.Common.csproj" />
  26. <ProjectReference Include="..\vCloud.GeneratePackages\vCloud.GeneratePackages.csproj" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <Compile Update="ModalActionWindow.xaml.cs">
  30. <DependentUpon>ModalActionWindow.xaml</DependentUpon>
  31. </Compile>
  32. </ItemGroup>
  33. <ItemGroup>
  34. <None Update="7z\7z.NET.dll">
  35. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  36. </None>
  37. <None Update="7z\7za.exe">
  38. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  39. </None>
  40. <None Update="AppSettings.cfg">
  41. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  42. </None>
  43. <None Update="ObjectStorageConfig.conf">
  44. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  45. </None>
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Page Update="ModalActionWindow.xaml">
  49. <SubType>Designer</SubType>
  50. </Page>
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Folder Include="Utilities\" />
  54. </ItemGroup>
  55. </Project>