blob: da0057d8583cd4ebbc8d933840c08ea58317262d [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
Mario Emmenlauerdb997bd2021-08-25 11:53:41 +020021 <PropertyGroup>
Jens Geyer03413232024-05-01 18:49:15 +020022 <TargetFrameworks>netstandard2.1;netstandard2.0;net6.0;net8.0</TargetFrameworks>
Mario Emmenlauerdb997bd2021-08-25 11:53:41 +020023 <AssemblyName>Thrift</AssemblyName>
24 <PackageId>ApacheThrift</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>
Mario Emmenlauer70ef9842021-08-25 11:56:06 +020035 <GenerateDocumentationFile>true</GenerateDocumentationFile>
Mario Emmenlauerdb997bd2021-08-25 11:53:41 +020036 </PropertyGroup>
Jens Geyeraa0c8b32019-01-28 23:27:45 +010037
Mario Emmenlauerdb997bd2021-08-25 11:53:41 +020038 <PropertyGroup>
39 <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
40 <SignAssembly>true</SignAssembly>
41 <AssemblyOriginatorKeyFile>thrift.snk</AssemblyOriginatorKeyFile>
42 <DelaySign>false</DelaySign>
Jens Geyer75cf93e2024-02-04 14:50:37 +010043 <Title>Apache Thrift 0.21.0</Title>
44 <Version>0.21.0.0</Version>
Mario Emmenlauerdb997bd2021-08-25 11:53:41 +020045 <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
46 <PackageProjectUrl>http://thrift.apache.org/</PackageProjectUrl>
47 <Authors>Apache Thrift Developers</Authors>
48 <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
49 <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
50 <PackageDescription>C# .NET Core bindings for the Apache Thrift RPC system</PackageDescription>
51 <PackageReleaseNotes></PackageReleaseNotes>
52 <PackageTags>Apache Thrift RPC</PackageTags>
Jens Geyer75cf93e2024-02-04 14:50:37 +010053 <PackageReleaseNotes>https://github.com/apache/thrift/blob/0.21.0/CHANGES.md</PackageReleaseNotes>
Jens Geyerc30ee692023-02-14 23:33:29 +010054 <PackageReadmeFile>README.md</PackageReadmeFile>
Jens Geyer9bd1f1b2024-03-23 00:53:56 +010055 <Copyright>Copyright 2024 The Apache Software Foundation</Copyright>
Mario Emmenlauerdb997bd2021-08-25 11:53:41 +020056 </PropertyGroup>
Jens Geyer68ff6cd2019-02-26 21:38:04 +010057
Jens Geyeraa0c8b32019-01-28 23:27:45 +010058 <ItemGroup>
Jens Geyer8e89abe2023-07-20 21:43:23 +020059 <PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" Condition="'$(TargetFramework.StartsWith(`netstandard2.`))' == 'true'" />
Jens Geyerac2deed2023-11-25 09:55:58 +010060 <PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
61 <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
62 <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
Jens Geyerb5fe1db2021-02-11 22:49:49 +010063 <PackageReference Include="System.IO.Pipes" Version="[4.3,)" />
Jens Geyer8e89abe2023-07-20 21:43:23 +020064 <PackageReference Include="System.IO.Pipes.AccessControl" Version="5.0.0" Condition="'$(TargetFramework.StartsWith(`netstandard2.`))' == 'true'" />
Jens Geyerac2deed2023-11-25 09:55:58 +010065 <PackageReference Include="System.Net.Http.WinHttpHandler" Version="8.0.0" />
Jens Geyerb5fe1db2021-02-11 22:49:49 +010066 <PackageReference Include="System.Net.NameResolution" Version="[4.3,)" />
67 <PackageReference Include="System.Net.Requests" Version="[4.3,)" />
Jens Geyer68ff6cd2019-02-26 21:38:04 +010068 <PackageReference Include="System.Net.Security" Version="4.3.2" />
Jens Geyer526a1ac2021-02-13 13:58:09 +010069 <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
Jens Geyeraa0c8b32019-01-28 23:27:45 +010070 </ItemGroup>
71
Jens Geyer4c7b9fd2021-12-04 22:48:37 +010072 <ItemGroup>
Jens Geyer8e89abe2023-07-20 21:43:23 +020073 <FrameworkReference Include="Microsoft.AspNetCore.App" Condition="'$(TargetFramework.StartsWith(`netstandard2.`))' == 'false'" />
74 </ItemGroup>
75
76 <ItemGroup>
Jens Geyer51fc54f2023-02-14 23:51:16 +010077 <PackageReference Update="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" />
Jens Geyer4c7b9fd2021-12-04 22:48:37 +010078 </ItemGroup>
79
Jens Geyerc30ee692023-02-14 23:33:29 +010080 <ItemGroup>
Jens Geyer51fc54f2023-02-14 23:51:16 +010081 <None Include="..\README.md" Pack="true" PackagePath="\" />
Jens Geyerc30ee692023-02-14 23:33:29 +010082 </ItemGroup>
Jens Geyer8e89abe2023-07-20 21:43:23 +020083
84 <ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
85 <PackageReference Include="Microsoft.AspNetCore.Components.Web">
86 <Version>7.0.9</Version>
87 </PackageReference>
88 </ItemGroup>
Jens Geyerc30ee692023-02-14 23:33:29 +010089
Jens Geyerac2deed2023-11-25 09:55:58 +010090 <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
91 <PackageReference Include="Microsoft.AspNetCore.Components.Web">
Jens Geyer03413232024-05-01 18:49:15 +020092 <Version>8.0.4</Version>
Jens Geyerac2deed2023-11-25 09:55:58 +010093 </PackageReference>
94 </ItemGroup>
95
Marco Schroeter7b379942020-03-12 10:30:49 +010096 <Target Name="SetTFMAssemblyAttributesPath" BeforeTargets="GenerateTargetFrameworkMonikerAttribute">
97 <PropertyGroup>
98 <TargetFrameworkMonikerAssemblyAttributesPath>$(IntermediateOutputPath)$(TargetFrameworkMoniker).AssemblyAttributes$(DefaultLanguageSourceExtension)</TargetFrameworkMonikerAssemblyAttributesPath>
99 </PropertyGroup>
100 </Target>
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100101</Project>