PRSClasses.csproj 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. <TargetFramework>netstandard2.1</TargetFramework>
  7. <Platforms>AnyCPU</Platforms>
  8. </PropertyGroup>
  9. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  10. <DefineConstants>TRACE;</DefineConstants>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <None Remove=".gitignore" />
  14. <None Remove="PRSClasses\**" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <Compile Remove="PRSClasses\**" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <EmbeddedResource Remove="PRSClasses\**" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Compile Remove="Entities\Product\ProductForecast.cs" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <PackageReference Include="AutoProperties.Fody" Version="1.25.0" />
  27. <PackageReference Include="Fody" Version="6.9.2" PrivateAssets="all">
  28. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  29. </PackageReference>
  30. <PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <ProjectReference Include="..\..\inabox\InABox.Core\InABox.Core.csproj" />
  34. <ProjectReference Include="..\..\inabox\InABox.Integration\InABox.Integration.csproj" />
  35. </ItemGroup>
  36. </Project>