PRS.Shared.csproj 2.6 KB

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