InABox.Poster.MYOB.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-windows</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <UseWpf>true</UseWpf>
  7. </PropertyGroup>
  8. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  9. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  10. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Fody" Version="6.8.1">
  14. <PrivateAssets>all</PrivateAssets>
  15. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  16. </PackageReference>
  17. <PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2592.51" />
  18. <PackageReference Include="MYOB.AccountRight.API.SDK" Version="2024.4.591" />
  19. <PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\InABox.Core\InABox.Core.csproj" />
  23. <ProjectReference Include="..\InABox.Poster.Shared\InABox.Poster.Shared.csproj" />
  24. <ProjectReference Include="..\inabox.wpf\InABox.Wpf.csproj" />
  25. </ItemGroup>
  26. </Project>