Skip to content

Commit

Permalink
build(qqbothub.sdk.csproj,qqbothub.web.csproj,src/plugincore): submod…
Browse files Browse the repository at this point in the history
…ule:PluginCore
  • Loading branch information
yiyungent committed Apr 16, 2022
1 parent b0b26e5 commit 8c20c1d
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "src/PluginCore"]
path = src/PluginCore
url = [email protected]:yiyungent/PluginCore.git
14 changes: 14 additions & 0 deletions QQBotHub.sln
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QQBotHub.Sdk", "src\QQBotHu
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MoLiPlugin", "plugins\MoLiPlugin\MoLiPlugin.csproj", "{F6087CC7-5239-42E3-92D6-51F25F6E3EE8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PluginCore", "src\PluginCore\src\PluginCore\PluginCore.csproj", "{AE51E530-8545-40F5-9070-8314E722FEF9}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PluginCore.IPlugins", "src\PluginCore\src\PluginCore.IPlugins\PluginCore.IPlugins.csproj", "{3F1C9ACE-0EC3-45FE-B382-97216429086E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -57,6 +61,14 @@ Global
{F6087CC7-5239-42E3-92D6-51F25F6E3EE8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F6087CC7-5239-42E3-92D6-51F25F6E3EE8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F6087CC7-5239-42E3-92D6-51F25F6E3EE8}.Release|Any CPU.Build.0 = Release|Any CPU
{AE51E530-8545-40F5-9070-8314E722FEF9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AE51E530-8545-40F5-9070-8314E722FEF9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AE51E530-8545-40F5-9070-8314E722FEF9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AE51E530-8545-40F5-9070-8314E722FEF9}.Release|Any CPU.Build.0 = Release|Any CPU
{3F1C9ACE-0EC3-45FE-B382-97216429086E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3F1C9ACE-0EC3-45FE-B382-97216429086E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3F1C9ACE-0EC3-45FE-B382-97216429086E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3F1C9ACE-0EC3-45FE-B382-97216429086E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -68,6 +80,8 @@ Global
{D4A8C051-C14E-4123-AF20-794A98FD3662} = {4B4BFBBE-8CE4-453C-B05A-EAFE933B79C9}
{56C78578-C690-4013-8AB6-1ED28770C2B1} = {BDFD03E4-0A99-49A3-95A7-F7132EC4FF00}
{F6087CC7-5239-42E3-92D6-51F25F6E3EE8} = {4B4BFBBE-8CE4-453C-B05A-EAFE933B79C9}
{AE51E530-8545-40F5-9070-8314E722FEF9} = {BDFD03E4-0A99-49A3-95A7-F7132EC4FF00}
{3F1C9ACE-0EC3-45FE-B382-97216429086E} = {BDFD03E4-0A99-49A3-95A7-F7132EC4FF00}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3F1D77E3-11F8-4B5B-BEED-EE2816D57A86}
Expand Down
1 change: 1 addition & 0 deletions src/PluginCore
Submodule PluginCore added at 90d07e
9 changes: 8 additions & 1 deletion src/QQBotHub.Sdk/QQBotHub.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,15 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PluginCore.IPlugins" Version="0.7.0" />
<PackageReference Include="Konata.Core" Version="1.3.1" />
</ItemGroup>

<!-- 方便开发debug,与发布到nuget -->
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<PackageReference Include="PluginCore.IPlugins" Version="0.7.0" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<ProjectReference Include="..\PluginCore\src\PluginCore.IPlugins\PluginCore.IPlugins.csproj" />
</ItemGroup>

</Project>
9 changes: 6 additions & 3 deletions src/QQBotHub.Web/QQBotHub.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PluginCore" Version="0.9.3" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.14.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
</ItemGroup>

<ItemGroup>

<!-- 方便开发debug,与发布到nuget -->
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<PackageReference Include="PluginCore" Version="0.9.3" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<ProjectReference Include="..\PluginCore\src\PluginCore\PluginCore.csproj" />
</ItemGroup>

<!-- 方便开发debug,与发布到nuget -->
Expand Down

0 comments on commit 8c20c1d

Please sign in to comment.