blob: d55074f3952a136053868d5dff8e36698cb78d9b [file] [log] [blame]
Jens Geyer0d128322021-02-25 09:42:52 +01001<Project Sdk="Microsoft.NET.Sdk">
Mikel Blanchard4b66a9d2020-03-05 00:46:21 +01002 <!--
3 Licensed to the Apache Software Foundation(ASF) under one
4 or more contributor license agreements.See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership.The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19 -->
20
21 <PropertyGroup>
22 <OutputType>Exe</OutputType>
Jens Geyer0d128322021-02-25 09:42:52 +010023 <TargetFramework>net5.0</TargetFramework>
Mikel Blanchard4b66a9d2020-03-05 00:46:21 +010024 <TieredCompilation>false</TieredCompilation>
Jens Geyer0d128322021-02-25 09:42:52 +010025 <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
Mikel Blanchard4b66a9d2020-03-05 00:46:21 +010026 </PropertyGroup>
27
28 <ItemGroup>
Jens Geyer526a1ac2021-02-13 13:58:09 +010029 <PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
Mikel Blanchard4b66a9d2020-03-05 00:46:21 +010030 </ItemGroup>
31
32 <ItemGroup>
33 <ProjectReference Include="..\..\Thrift\Thrift.csproj" />
34 </ItemGroup>
35
36</Project>