feat:remove appsetting

This commit is contained in:
geffzhang 2024-02-19 22:45:17 +08:00
parent c2a81fe4c0
commit 21b3f70355
2 changed files with 4 additions and 6 deletions

View file

@ -6,8 +6,6 @@
<ImplicitUsings>enable</ImplicitUsings>
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
<UserSecretsId>4fb8c9df-7975-4926-ba73-46c8ca440691</UserSecretsId>
<ContainerRepository>botsharpwebapi</ContainerRepository>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup Condition="$(SolutionName)==PizzaBot">
@ -32,7 +30,7 @@
<ProjectReference Include="..\Plugins\BotSharp.Plugin.Dashboard\BotSharp.Plugin.Dashboard.csproj" />
</ItemGroup>
<ItemGroup>
<ItemGroup Condition="$(SolutionName)==BotSharp">
<ProjectReference Include="..\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
<ProjectReference Include="..\Infrastructure\BotSharp.Logger\BotSharp.Logger.csproj" />
<ProjectReference Include="..\Infrastructure\BotSharp.OpenAPI\BotSharp.OpenAPI.csproj" />
@ -61,4 +59,4 @@
<Folder Include="Properties\PublishProfiles\" />
</ItemGroup>
</Project>
</Project>

View file

@ -161,9 +161,9 @@
},
"Database": {
"Default": "MongoRepository",
"Default": "FileRepository",
"TablePrefix": "BotSharp",
"BotSharpMongoDb": "mongodb://root:admin@localhost:27017/botsharp?authSource=admin",
"BotSharpMongoDb": "",
"FileRepository": "data",
"Assemblies": [ "BotSharp.Core" ]
},