PRSClasses.csproj 1.3 KB

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