PRS.Shared.csproj 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.sqlite\InABox.Database.SQLite.csproj" />
  14. <ProjectReference Include="..\..\InABox\InABox.Database\InABox.Database.csproj" />
  15. <ProjectReference Include="..\..\inabox\inabox.mailer.exchange\InABox.Mailer.Exchange.csproj" />
  16. <ProjectReference Include="..\..\inabox\inabox.mailer.imap\InABox.Mailer.IMAP.csproj" />
  17. <ProjectReference Include="..\..\inabox\InABox.Poster.CSV\InABox.Poster.CSV.csproj" />
  18. <ProjectReference Include="..\..\inabox\InABox.Poster.MYOB\InABox.Poster.MYOB.csproj" />
  19. <ProjectReference Include="..\..\inabox\InABox.Poster.Timberline\InABox.Poster.Timberline.csproj" />
  20. <ProjectReference Include="..\..\inabox\InABox.Poster.Xero\InABox.Poster.Xero.csproj" />
  21. <ProjectReference Include="..\..\InABox\InABox.WPF\InABox.Wpf.csproj" />
  22. <ProjectReference Include="..\PRS.Classes\PRSClasses.csproj" />
  23. <ProjectReference Include="..\prs.stores\PRSStores.csproj" />
  24. </ItemGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  27. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  28. </PropertyGroup>
  29. <ItemGroup>
  30. <Compile Update="Resources.Designer.cs">
  31. <DesignTime>True</DesignTime>
  32. <AutoGen>True</AutoGen>
  33. <DependentUpon>Resources.resx</DependentUpon>
  34. </Compile>
  35. </ItemGroup>
  36. <ItemGroup>
  37. <EmbeddedResource Update="Resources.resx">
  38. <Generator>ResXFileCodeGenerator</Generator>
  39. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  40. </EmbeddedResource>
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Page Update="Forms\NotesForm.xaml">
  44. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  45. <SubType>Designer</SubType>
  46. </Page>
  47. <Page Update="Forms\ScheduleForm.xaml">
  48. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  49. <SubType>Designer</SubType>
  50. </Page>
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Folder Include="Posters\Xero\" />
  54. <Folder Include="Resources\" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <PackageReference Include="RestSharp" Version="111.2.0" />
  58. <PackageReference Include="System.Collections.Immutable" Version="9.0.7" />
  59. </ItemGroup>
  60. </Project>