PRS.Shared.csproj 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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;DebugDev</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\NotesForm.xaml">
  38. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  39. <SubType>Designer</SubType>
  40. </Page>
  41. <Page Update="Forms\ScheduleForm.xaml">
  42. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  43. <SubType>Designer</SubType>
  44. </Page>
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Folder Include="Resources\" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <PackageReference Include="RestSharp" Version="111.2.0" />
  51. <PackageReference Include="System.Collections.Immutable" Version="9.0.6" />
  52. </ItemGroup>
  53. </Project>