| <Project Sdk="Microsoft.NET.Sdk"> |
| <!-- |
| Licensed to the Apache Software Foundation(ASF) under one |
| or more contributor license agreements.See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership.The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| |
| <PropertyGroup> |
| <TargetFramework>net6.0</TargetFramework> |
| <AssemblyName>Interfaces</AssemblyName> |
| <PackageId>Interfaces</PackageId> |
| <Version>0.20.0.0</Version> |
| <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
| <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
| <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
| <GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> |
| </PropertyGroup> |
| |
| <ItemGroup> |
| <ProjectReference Include="../../../lib/netstd/Thrift/Thrift.csproj" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <PackageReference Include="System.ServiceModel.Primitives" Version="6.2.0" /> |
| </ItemGroup> |
| |
| <Target Name="PreBuild" BeforeTargets="_GenerateRestoreProjectSpec;Restore;Compile"> |
| <Exec Condition="'$(OS)' == 'Windows_NT'" Command="where thrift" ConsoleToMSBuild="true"> |
| <Output TaskParameter="ConsoleOutput" PropertyName="PathToThrift" /> |
| </Exec> |
| <Exec Condition="Exists('$(PathToThrift)')" Command="$(PathToThrift) -out $(ProjectDir) -gen netstd:wcf,union,serial,net6 -r ./../../tutorial.thrift" /> |
| <Exec Condition="Exists('thrift')" Command="thrift -out $(ProjectDir) -gen netstd:wcf,union,serial,net6 -r ./../../tutorial.thrift" /> |
| <Exec Condition="Exists('./../../../compiler/cpp/thrift')" Command="./../../../compiler/cpp/thrift -out $(ProjectDir) -gen netstd:wcf,union,serial,net6 -r ./../../tutorial.thrift" /> |
| </Target> |
| </Project> |