blob: 158e5924388fa5d53742997049f2efacff1f6ce3 [file] [log] [blame]
Jens Geyeraa0c8b32019-01-28 23:27:45 +01001<Project Sdk="Microsoft.NET.Sdk">
2 <!--
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>
Jens Geyer4c7b9fd2021-12-04 22:48:37 +010022 <TargetFramework>net6.0</TargetFramework>
Mario Emmenlaueraeb89642021-05-05 10:50:02 +020023 <LangVersion>9.0</LangVersion>
Jens Geyeraa0c8b32019-01-28 23:27:45 +010024 <AssemblyName>Client</AssemblyName>
25 <PackageId>Client</PackageId>
26 <OutputType>Exe</OutputType>
Jens Geyer6868ebb2022-01-20 21:02:02 +010027 <Version>0.17.0.0</Version>
Jens Geyeraa0c8b32019-01-28 23:27:45 +010028 <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
29 <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
30 <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
31 <GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
32 </PropertyGroup>
33
34 <ItemGroup>
Jens Geyer4c7b9fd2021-12-04 22:48:37 +010035 <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
Kyle Smith7b94dd42019-03-23 17:26:56 +010036 </ItemGroup>
37
38 <ItemGroup>
Jens Geyeraa0c8b32019-01-28 23:27:45 +010039 <ProjectReference Include="..\Interfaces\Interfaces.csproj" />
40 <ProjectReference Include="..\..\..\lib\netstd\Thrift\Thrift.csproj" />
41 </ItemGroup>
Jens Geyeraa0c8b32019-01-28 23:27:45 +010042</Project>