PRS.Shared.csproj 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. <LangVersion>default</LangVersion>
  8. <Configurations>Debug;Release;Test</Configurations>
  9. <Platforms>AnyCPU;x64</Platforms>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\..\inabox\inabox.client.rest\InABox.Client.Rest\InABox.Client.Rest.csproj" />
  13. <ProjectReference Include="..\..\InABox\InABox.Database\InABox.Database.csproj" />
  14. <ProjectReference Include="..\..\inabox\inabox.mailer.exchange\InABox.Mailer.Exchange.csproj" />
  15. <ProjectReference Include="..\..\inabox\inabox.mailer.imap\InABox.Mailer.IMAP.csproj" />
  16. <ProjectReference Include="..\..\inabox\InABox.Poster.CSV\InABox.Poster.CSV.csproj" />
  17. <ProjectReference Include="..\..\inabox\InABox.Poster.MYOB\InABox.Poster.MYOB.csproj" />
  18. <ProjectReference Include="..\..\inabox\InABox.Poster.Timberline\InABox.Poster.Timberline.csproj" />
  19. <ProjectReference Include="..\..\InABox\InABox.WPF\InABox.Wpf.csproj" />
  20. <ProjectReference Include="..\PRS.Classes\PRSClasses.csproj" />
  21. <ProjectReference Include="..\prs.stores\PRSStores.csproj" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <Compile Update="Resources.Designer.cs">
  25. <DesignTime>True</DesignTime>
  26. <AutoGen>True</AutoGen>
  27. <DependentUpon>Resources.resx</DependentUpon>
  28. </Compile>
  29. </ItemGroup>
  30. <ItemGroup>
  31. <EmbeddedResource Update="Resources.resx">
  32. <Generator>ResXFileCodeGenerator</Generator>
  33. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  34. </EmbeddedResource>
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Page Update="Forms\ScheduleForm.xaml">
  38. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  39. <SubType>Designer</SubType>
  40. </Page>
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Folder Include="Resources\" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <PackageReference Include="Geocoding.Core" Version="4.0.1" />
  47. <PackageReference Include="Geocoding.Google" Version="4.0.1" />
  48. <PackageReference Include="RestSharp" Version="111.2.0" />
  49. <PackageReference Include="System.Collections.Immutable" Version="9.0.0-preview.4.24266.19" />
  50. </ItemGroup>
  51. </Project>