-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMappingBenchmarks.csproj
More file actions
24 lines (20 loc) · 978 Bytes
/
MappingBenchmarks.csproj
File metadata and controls
24 lines (20 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<NoWarn>LOCAT001</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="16.1.1" />
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
<PackageReference Include="BenchmarkDotNetVisualizer" Version="2.1.0" />
<PackageReference Include="Mapster" Version="10.0.7" />
<PackageReference Include="Riok.Mapperly" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\AotObjectMapper.Abstractions\AotObjectMapper.Abstractions.csproj" />
<ProjectReference Include="..\..\src\AotObjectMapper.Mapper\AotObjectMapper.Mapper.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
</ItemGroup>
</Project>