PRSClasses.csproj 1.5 KB

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