PRSClasses.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. </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="Fody" Version="6.8.1" PrivateAssets="All">
  26. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  27. </PackageReference>
  28. <PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <ProjectReference Include="..\..\inabox\InABox.Core\InABox.Core.csproj" />
  32. </ItemGroup>
  33. </Project>