1234567891011121314151617181920212223242526272829 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-windows</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <Configurations>Debug;Release;Test</Configurations>
- <Platforms>AnyCPU;x64</Platforms>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Fody" Version="6.8.1">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Geocoding.Google" Version="4.0.1" />
- <PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
- <PackageReference Include="Syncfusion.Pdf.Wpf" Version="25.2.6" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\inabox\InABox.Core\InABox.Core.csproj" />
- <ProjectReference Include="..\..\inabox\InABox.Database\InABox.Database.csproj" />
- <ProjectReference Include="..\..\inabox\inabox.mailer.exchange\InABox.Mailer.Exchange.csproj" />
- <ProjectReference Include="..\..\inabox\inabox.wpf\InABox.Wpf.csproj" />
- <ProjectReference Include="..\prs.classes\PRSClasses.csproj" />
- </ItemGroup>
- </Project>
|