PRSStores.csproj 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-windows</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <Configurations>Debug;Release;Test;DebugDev</Configurations>
  7. <Platforms>AnyCPU;x64</Platforms>
  8. </PropertyGroup>
  9. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  10. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  11. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Nominatim.API" Version="2.1.0" />
  15. <PackageReference Include="Syncfusion.Pdf.Wpf" Version="29.2.7" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\..\inabox\InABox.Core\InABox.Core.csproj" />
  19. <ProjectReference Include="..\..\inabox\InABox.Database\InABox.Database.csproj" />
  20. <ProjectReference Include="..\..\inabox\inabox.mailer.exchange\InABox.Mailer.Exchange.csproj" />
  21. <ProjectReference Include="..\..\inabox\inabox.wpf\InABox.Wpf.csproj" />
  22. <ProjectReference Include="..\prs.classes\PRSClasses.csproj" />
  23. </ItemGroup>
  24. </Project>