PRSClasses.csproj 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks>
  4. <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
  5. <RootNamespace>Comal.Classes</RootNamespace>
  6. <Nullable>enable</Nullable>
  7. <Configurations>Debug;Release;Test</Configurations>
  8. <Platforms>AnyCPU;x64</Platforms>
  9. <IsPackable>false</IsPackable>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  12. <DefineConstants>TRACE; </DefineConstants>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <None Remove=".gitignore" />
  16. <None Remove="PRSClasses\**" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Compile Remove="PRSClasses\**" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <EmbeddedResource Remove="PRSClasses\**" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <Compile Remove="Entities\Product\ProductForecast.cs" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <PackageReference Include="AutoProperties.Fody" Version="1.25.0" />
  29. <PackageReference Include="Fody" Version="6.9.2" PrivateAssets="all">
  30. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  31. </PackageReference>
  32. <PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <ProjectReference Include="..\..\inabox\InABox.Core\InABox.Core.csproj" />
  36. <ProjectReference Include="..\..\InABox\InABox.Integration\InABox.Integration.csproj" />
  37. </ItemGroup>
  38. </Project>