PRSClasses.csproj 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <RootNamespace>Comal.Classes</RootNamespace>
  4. <Nullable>enable</Nullable>
  5. <Configurations>Debug;Release;Test;Publish</Configurations>
  6. <TargetFrameworks>net8.0-ios;net8.0;netstandard2.1</TargetFrameworks>
  7. <Platforms>AnyCPU</Platforms>
  8. </PropertyGroup>
  9. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  10. <DefineConstants>TRACE;</DefineConstants>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  13. <DefineConstants>$(DefineConstants);TRACE;PURGE</DefineConstants>
  14. <!-- Only pack when explicitly requested; do NOT pack when being built for an app's RID -->
  15. <GeneratePackageOnBuild Condition="'$(RuntimeIdentifier)' == '' and '$(IsPacking)' == 'true'">true</GeneratePackageOnBuild>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <None Remove=".gitignore" />
  19. <None Remove="PRSClasses\**" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <Compile Remove="PRSClasses\**" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <EmbeddedResource Remove="PRSClasses\**" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Compile Remove="Entities\Product\ProductForecast.cs" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <PackageReference Include="AutoProperties.Fody" Version="1.25.0" />
  32. <PackageReference Include="Fody" Version="6.9.2" PrivateAssets="all">
  33. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  34. </PackageReference>
  35. <PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <ProjectReference Include="..\..\inabox\InABox.Core\InABox.Core.csproj" />
  39. <ProjectReference Include="..\..\inabox\InABox.Integration\InABox.Integration.csproj" />
  40. </ItemGroup>
  41. </Project>