123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <RootNamespace>Comal.Classes</RootNamespace>
- <Nullable>enable</Nullable>
- <Configurations>Debug;Release;Test</Configurations>
- <TargetFramework>netstandard2.1</TargetFramework>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <DefineConstants>TRACE;</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <None Remove=".gitignore" />
- <None Remove="PRSClasses\**" />
- </ItemGroup>
- <ItemGroup>
- <Compile Remove="PRSClasses\**" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Remove="PRSClasses\**" />
- </ItemGroup>
- <ItemGroup>
- <Compile Remove="Entities\Product\ProductForecast.cs" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="AutoProperties.Fody" Version="1.25.0" />
- <PackageReference Include="Fody" Version="6.9.2" PrivateAssets="all">
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\inabox\InABox.Core\InABox.Core.csproj" />
- <ProjectReference Include="..\..\inabox\InABox.Integration\InABox.Integration.csproj" />
- </ItemGroup>
- </Project>
|