Skip to content

Commit d592ca3

Browse files
committed
Auto csproj fix and update by bot.
1 parent b49eba8 commit d592ca3

File tree

1 file changed

+52
-55
lines changed

1 file changed

+52
-55
lines changed
Lines changed: 52 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,58 @@
11
<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>
2+
<PropertyGroup>
3+
<OutputType>Library</OutputType>
4+
<Version>0.1.0-preview1</Version>
5+
<AssemblyName>Senparc.Toutiao</AssemblyName>
6+
<RootNamespace>Senparc.Toutiao</RootNamespace>
7+
<IsTestProject>false</IsTestProject>
8+
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
9+
<IsPackable>true</IsPackable>
10+
<ImplicitUsings>enable</ImplicitUsings>
11+
<Company>Senparc</Company>
12+
<Product>TouTiao</Product>
13+
<Authors>Senparc</Authors>
14+
<Description>
1015
头条 SDK - Senparc.TouTiao SDK 基础模块
1116

1217
Senparc.TouTiao SDK 开源项目:
1318
https://github.com/Senparc/TouTiaoSDK
1419
</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.108" />
58-
</ItemGroup>
59-
60-
61-
</Project>
20+
<PackageId>Senparc.TouTiao</PackageId>
21+
<PackageTags>头条,TouTiao,Senparc,盛派,SDK,C#,小程序,小游戏,Cache,Redis</PackageTags>
22+
<PackageProjectUrl>https://github.com/Senparc/TouTiaoSDK</PackageProjectUrl>
23+
<RepositoryUrl>https://github.com/Senparc/TouTiaoSDK</RepositoryUrl>
24+
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
25+
<Copyright>Senparc Copyright © 2004~2020</Copyright>
26+
<Owners>Senparc</Owners>
27+
<PackageLicenseUrl>https://github.com/Senparc/TouTiaoSDK/blob/master/license.md</PackageLicenseUrl>
28+
<ProjectUrl>https://github.com/Senparc/TouTiaoSDK</ProjectUrl>
29+
<Title>Senparc.Toutiao.dll</Title>
30+
<Summary>头条 SDK for C#</Summary>
31+
<PackageIconUrl>http://sdk.weixin.senparc.com/Images/Logo.jpg</PackageIconUrl>
32+
<PackageReleaseNotes></PackageReleaseNotes>
33+
</PropertyGroup>
34+
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
35+
<OutputPath>..\BuildOutPut</OutputPath>
36+
<DefineConstants>TRACE;RELEASE</DefineConstants>
37+
</PropertyGroup>
38+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
39+
<OutputPath>..\BuildOutPut</OutputPath>
40+
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
41+
<DocumentationFile>..\BuildOutPut\Senparc.Toutiao.XML</DocumentationFile>
42+
<Optimize>true</Optimize>
43+
<DebugType>pdbonly</DebugType>
44+
<ErrorReport>prompt</ErrorReport>
45+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
46+
</PropertyGroup>
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+
<ItemGroup>
56+
<PackageReference Include="Senparc.NeuChar" Version="2.3.1.1" />
57+
</ItemGroup>
58+
</Project>

0 commit comments

Comments
 (0)