-
Notifications
You must be signed in to change notification settings - Fork 405
Expand file tree
/
Copy pathMapster.Tests.csproj
More file actions
36 lines (36 loc) · 1.63 KB
/
Mapster.Tests.csproj
File metadata and controls
36 lines (36 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<IsPackable>false</IsPackable>
<AssemblyName>Mapster.Tests</AssemblyName>
<AssemblyOriginatorKeyFile>Mapster.Tests.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ExpressionDebugger" Version="2.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Shouldly" Version="3.0.2" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Mapster\Mapster.csproj" />
<ProjectReference Include="..\Mapster.Tests.InternalsVisibleAssembly\Mapster.Tests.InternalsVisibleAssembly.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="packages.config" />
<None Remove="mock.keys" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="mock.keys" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Diagnostics\DebugInfoInjectorEx.cs" />
<Compile Remove="Diagnostics\GlobalReference.cs" />
<Compile Remove="Diagnostics\TypeAdapterConfigExtensions.cs" />
</ItemGroup>
</Project>