Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 1 | <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> |
Mikel Blanchard | 4b66a9d | 2020-03-05 00:46:21 +0100 | [diff] [blame] | 22 | <TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks> |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 23 | <AssemblyName>Thrift</AssemblyName> |
| 24 | <PackageId>Thrift</PackageId> |
| 25 | <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
| 26 | <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> |
| 27 | <GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute> |
| 28 | <GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> |
| 29 | <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
| 30 | <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
| 31 | <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
| 32 | <GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> |
| 33 | <GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> |
| 34 | <GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> |
| 35 | </PropertyGroup> |
| 36 | |
Jens Geyer | 68ff6cd | 2019-02-26 21:38:04 +0100 | [diff] [blame] | 37 | <PropertyGroup> |
| 38 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
Jens Geyer | a4fc3d4 | 2019-08-24 23:10:32 +0200 | [diff] [blame] | 39 | <SignAssembly>true</SignAssembly> |
| 40 | <AssemblyOriginatorKeyFile>thrift.snk</AssemblyOriginatorKeyFile> |
| 41 | <DelaySign>false</DelaySign> |
Jens Geyer | 5fe31ea | 2019-10-17 23:51:36 +0200 | [diff] [blame] | 42 | <Version>0.14.0.0</Version> |
Jens Geyer | 68ff6cd | 2019-02-26 21:38:04 +0100 | [diff] [blame] | 43 | </PropertyGroup> |
| 44 | |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 45 | <ItemGroup> |
Jens Geyer | 68ff6cd | 2019-02-26 21:38:04 +0100 | [diff] [blame] | 46 | <PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" /> |
Jens Geyer | ffb97e1 | 2019-12-06 23:43:08 +0100 | [diff] [blame] | 47 | <PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.0" /> |
| 48 | <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="3.1.0" /> |
| 49 | <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.0" /> |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 50 | <PackageReference Include="System.IO.Pipes" Version="[4.3,)" /> |
Jens Geyer | 68ff6cd | 2019-02-26 21:38:04 +0100 | [diff] [blame] | 51 | <PackageReference Include="System.IO.Pipes.AccessControl" Version="4.5.1" /> |
Jens Geyer | ffb97e1 | 2019-12-06 23:43:08 +0100 | [diff] [blame] | 52 | <PackageReference Include="System.Net.Http.WinHttpHandler" Version="4.7.0" /> |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 53 | <PackageReference Include="System.Net.NameResolution" Version="[4.3,)" /> |
| 54 | <PackageReference Include="System.Net.Requests" Version="[4.3,)" /> |
Jens Geyer | 68ff6cd | 2019-02-26 21:38:04 +0100 | [diff] [blame] | 55 | <PackageReference Include="System.Net.Security" Version="4.3.2" /> |
Jens Geyer | ffb97e1 | 2019-12-06 23:43:08 +0100 | [diff] [blame] | 56 | <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.3" /> |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 57 | </ItemGroup> |
| 58 | |
Marco Schroeter | 7b37994 | 2020-03-12 10:30:49 +0100 | [diff] [blame^] | 59 | <Target Name="SetTFMAssemblyAttributesPath" BeforeTargets="GenerateTargetFrameworkMonikerAttribute"> |
| 60 | <PropertyGroup> |
| 61 | <TargetFrameworkMonikerAssemblyAttributesPath>$(IntermediateOutputPath)$(TargetFrameworkMoniker).AssemblyAttributes$(DefaultLanguageSourceExtension)</TargetFrameworkMonikerAssemblyAttributesPath> |
| 62 | </PropertyGroup> |
| 63 | </Target> |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 64 | </Project> |