Skip to content

Commit

Permalink
build(plugins/qqchannelplugin): 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
yiyungent committed Aug 21, 2023
1 parent 8806e9a commit 169c2df
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 42 deletions.
94 changes: 54 additions & 40 deletions plugins/QQChannelPlugin/QQChannelPlugin.csproj
Original file line number Diff line number Diff line change
@@ -1,54 +1,68 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<!--<PackageReference Include="System.Data.SQLite.Core" Version="1.0.115.5">
<PropertyGroup>
<PackageId>PluginCore.QQChannelPlugin</PackageId>
<Version>0.1.6</Version>
<FileVersion>0.1.6.0</FileVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<Company>yiyun</Company>
<Authors>yiyun</Authors>
<Description>PluginCore 插件: QQChannelPlugin</Description>
<Copyright>Copyright (c) 2023-present yiyun</Copyright>
<RepositoryUrl>https://github.com/yiyungent/KnifeHub</RepositoryUrl>
<PackageLicenseUrl>https://github.com/yiyungent/KnifeHub/blob/main/LICENSE</PackageLicenseUrl>
<PackageTags>PluginCore PluginCore.IPlugins</PackageTags>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<PackageReference Include="PluginCore.IPlugins.AspNetCore" Version="0.1.0">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<!--<PackageReference Include="System.Data.SQLite.Core" Version="1.0.115.5">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>-->
<PackageReference Include="Dapper" Version="2.0.123" />
<PackageReference Include="MyBot" Version="1.1.8" />
<PackageReference Include="PluginCore.IPlugins.AspNetCore" Version="0.0.1">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.115.5" />
</ItemGroup>
<PackageReference Include="Dapper" Version="2.0.123" />
<PackageReference Include="MyBot" Version="1.1.8" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.115.5" />
</ItemGroup>

<!-- 方便开发debug,与发布到nuget -->
<!--<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<!-- 方便开发debug,与发布到nuget -->
<!--<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<ProjectReference Include="..\..\src\QQBotHub.Sdk\QQBotHub.Sdk.csproj">
<Private>false</Private>
<ExcludeAssets>runtime</ExcludeAssets>
</ProjectReference>
</ItemGroup>-->

<!-- 发布插件相关文件 -->
<ItemGroup>
<Content Include="info.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="README.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="settings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="QQChannelPlugin.sqlite">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>

<!-- 发布 wwwroot -->
<ItemGroup>
<Content Include="wwwroot\**\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<!-- 发布插件相关文件 -->
<ItemGroup>
<Content Include="info.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="README.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="settings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="QQChannelPlugin.sqlite">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<!-- 发布 wwwroot -->
<Content Include="wwwroot\**\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion plugins/QQChannelPlugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@
> 本项目基于 [Chianne1025/QQChannelFramework: MyBot - QQ频道机器人开发框架(C#)](https://github.com/Chianne1025/QQChannelFramework)
<!-- Matomo Image Tracker-->
<img referrerpolicy="no-referrer-when-downgrade" src="https://matomo.moeci.com/matomo.php?idsite=2&amp;rec=1&amp;action_name=Plugins.QQChannelPlugin-v0.1.5.README" style="border:0" alt="" />
<img referrerpolicy="no-referrer-when-downgrade" src="https://matomo.moeci.com/matomo.php?idsite=2&amp;rec=1&amp;action_name=Plugins.QQChannelPlugin-v0.1.6.README" style="border:0" alt="" />
<!-- End Matomo -->
2 changes: 1 addition & 1 deletion plugins/QQChannelPlugin/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"DisplayName": "QQ频道插件",
"Description": "QQ频道基础插件",
"Author": "yiyun",
"Version": "0.1.5",
"Version": "0.1.6",
"SupportedVersions": [ "0.0.1" ]
}

0 comments on commit 169c2df

Please sign in to comment.