|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks> |
| 5 | + <Version>0.1.0-preview1</Version> |
| 6 | + <AssemblyName>Senparc.TouTiao</AssemblyName> |
| 7 | + <RootNamespace>Senparc.TouTiao</RootNamespace> |
| 8 | + <GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild> |
| 9 | + <Description> |
| 10 | + 头条 SDK - Senparc.TouTiao SDK 基础模块 |
| 11 | + |
| 12 | + Senparc.TouTiao SDK 开源项目: |
| 13 | + https://github.com/Senparc/TouTiaoSDK |
| 14 | + </Description> |
| 15 | + <Copyright>Senparc Copyright © 2004~2020</Copyright> |
| 16 | + <PackageTags>头条,TouTiao,Senparc,盛派,SDK,C#,小程序,小游戏,Cache,Redis</PackageTags> |
| 17 | + <Authors>Senparc</Authors> |
| 18 | + <Owners>Senparc</Owners> |
| 19 | + <PackageLicenseUrl>https://github.com/Senparc/TouTiaoSDK/blob/master/license.md</PackageLicenseUrl> |
| 20 | + <ProjectUrl>https://github.com/Senparc/TouTiaoSDK</ProjectUrl> |
| 21 | + <Title>Senparc.TouTiao.dll</Title> |
| 22 | + <Summary>微信公众号SDK for C#</Summary> |
| 23 | + <PackageProjectUrl>https://github.com/Senparc/TouTiaoSDK</PackageProjectUrl> |
| 24 | + <PackageIconUrl>http://sdk.weixin.senparc.com/Images/Logo.jpg</PackageIconUrl> |
| 25 | + <RepositoryUrl>https://github.com/Senparc/TouTiaoSDK</RepositoryUrl> |
| 26 | + <PackageReleaseNotes> |
| 27 | + |
| 28 | + |
| 29 | + </PackageReleaseNotes> |
| 30 | + |
| 31 | + </PropertyGroup> |
| 32 | + |
| 33 | + <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
| 34 | + <OutputPath>..\BuildOutPut</OutputPath> |
| 35 | + <DefineConstants>TRACE;RELEASE</DefineConstants> |
| 36 | + </PropertyGroup> |
| 37 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> |
| 38 | + <OutputPath>..\BuildOutPut</OutputPath> |
| 39 | + <DefineConstants>$(DefineConstants);RELEASE</DefineConstants> |
| 40 | + <DocumentationFile>..\BuildOutPut\Senparc.TouTiao.XML</DocumentationFile> |
| 41 | + <Optimize>true</Optimize> |
| 42 | + <DebugType>pdbonly</DebugType> |
| 43 | + <ErrorReport>prompt</ErrorReport> |
| 44 | + <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
| 45 | + </PropertyGroup> |
| 46 | + |
| 47 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'"> |
| 48 | + <OutputPath>..\BuildOutPut\</OutputPath> |
| 49 | + <DocumentationFile>..\BuildOutPut\netstandard2.0\Senparc.TouTiao.xml</DocumentationFile> |
| 50 | + </PropertyGroup> |
| 51 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.1|AnyCPU'"> |
| 52 | + <OutputPath>..\BuildOutPut\</OutputPath> |
| 53 | + <DocumentationFile>..\BuildOutPut\netstandard2.1\Senparc.TouTiao.xml</DocumentationFile> |
| 54 | + </PropertyGroup> |
| 55 | + |
| 56 | + <ItemGroup> |
| 57 | + <PackageReference Include="Senparc.NeuChar" Version="1.2.106" /> |
| 58 | + </ItemGroup> |
| 59 | + |
| 60 | +</Project> |
0 commit comments