|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <Import Project="..\common.props" /> |
| 3 | + |
| 4 | + <PropertyGroup> |
| 5 | + <TargetFramework>netcoreapp2.2</TargetFramework> |
| 6 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 7 | + <AssemblyName>AgileObjects.AgileMapper.UnitTests.NetCore2_1</AssemblyName> |
| 8 | + <PackageId>AgileObjects.AgileMapper.UnitTests.NetCore2_1</PackageId> |
| 9 | + <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> |
| 10 | + <RuntimeFrameworkVersion>2.2.2</RuntimeFrameworkVersion> |
| 11 | + <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
| 12 | + <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
| 13 | + <GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> |
| 14 | + <GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute> |
| 15 | + <GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> |
| 16 | + <RootNamespace>AgileObjects.AgileMapper.UnitTests.NetCore2</RootNamespace> |
| 17 | + </PropertyGroup> |
| 18 | + |
| 19 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 20 | + <DefineConstants>TRACE;DEBUG;NETCOREAPP2_0;NET_STANDARD</DefineConstants> |
| 21 | + </PropertyGroup> |
| 22 | + |
| 23 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 24 | + <DefineConstants>TRACE;RELEASE;NETCOREAPP2_0;NET_STANDARD</DefineConstants> |
| 25 | + </PropertyGroup> |
| 26 | + |
| 27 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.2' "> |
| 28 | + <PackageReference Include="System.Data.Common" Version="4.3.0" /> |
| 29 | + </ItemGroup> |
| 30 | + |
| 31 | + <ItemGroup> |
| 32 | + <PackageReference Include="AgileObjects.NetStandardPolyfills" Version="1.4.0" /> |
| 33 | + <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.2.0" /> |
| 34 | + <PackageReference Include="Microsoft.Extensions.Primitives" Version="2.2.0" /> |
| 35 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" /> |
| 36 | + <PackageReference Include="xunit" Version="2.4.1" /> |
| 37 | + <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1"> |
| 38 | + <PrivateAssets>all</PrivateAssets> |
| 39 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
| 40 | + </PackageReference> |
| 41 | + </ItemGroup> |
| 42 | + |
| 43 | + <ItemGroup> |
| 44 | + <ProjectReference Include="..\AgileMapper.UnitTests.Common\AgileMapper.UnitTests.Common.csproj" /> |
| 45 | + <ProjectReference Include="..\AgileMapper.UnitTests.MoreTestClasses\AgileMapper.UnitTests.MoreTestClasses.csproj" /> |
| 46 | + <ProjectReference Include="..\AgileMapper\AgileMapper.csproj" /> |
| 47 | + </ItemGroup> |
| 48 | + |
| 49 | + <ItemGroup> |
| 50 | + <Compile Include="..\AgileMapper.UnitTests\**\*.cs" Exclude="..\AgileMapper.UnitTests\obj\**\*.cs;..\AgileMapper.UnitTests\WhenUsingPartialTrust.cs;"> |
| 51 | + <Link>%(RecursiveDir)%(Filename)%(Extension)</Link> |
| 52 | + </Compile> |
| 53 | + </ItemGroup> |
| 54 | + |
| 55 | + <ItemGroup> |
| 56 | + <Compile Include="..\CommonAssemblyInfo.cs" Link="Properties\CommonAssemblyInfo.cs" /> |
| 57 | + </ItemGroup> |
| 58 | + |
| 59 | + <ItemGroup> |
| 60 | + <Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> |
| 61 | + </ItemGroup> |
| 62 | + |
| 63 | +</Project> |
0 commit comments