PRSStores.csproj 1.2 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</Configurations>
  7. <Platforms>AnyCPU;x64</Platforms>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="Fody" Version="6.8.1">
  11. <PrivateAssets>all</PrivateAssets>
  12. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  13. </PackageReference>
  14. <PackageReference Include="Geocoding.Google" Version="4.0.1" />
  15. <PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
  16. <PackageReference Include="Syncfusion.Pdf.Wpf" Version="25.2.6" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\..\inabox\InABox.Core\InABox.Core.csproj" />
  20. <ProjectReference Include="..\..\inabox\InABox.Database\InABox.Database.csproj" />
  21. <ProjectReference Include="..\..\inabox\inabox.mailer.exchange\InABox.Mailer.Exchange.csproj" />
  22. <ProjectReference Include="..\..\inabox\inabox.wpf\InABox.Wpf.csproj" />
  23. <ProjectReference Include="..\prs.classes\PRSClasses.csproj" />
  24. </ItemGroup>
  25. </Project>