-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathSharpClaw.Code.Runtime.csproj
More file actions
36 lines (32 loc) · 2.18 KB
/
Copy pathSharpClaw.Code.Runtime.csproj
File metadata and controls
36 lines (32 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Production runtime orchestration for SharpClaw Code agents, built on Microsoft Agent Framework.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="Microsoft.Data.Sqlite" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SharpClaw.Code.Protocol\SharpClaw.Code.Protocol.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Agents\SharpClaw.Code.Agents.csproj" />
<ProjectReference Include="..\SharpClaw.Code.ExternalAgents\SharpClaw.Code.ExternalAgents.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Providers\SharpClaw.Code.Providers.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Tools\SharpClaw.Code.Tools.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Permissions\SharpClaw.Code.Permissions.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Sessions\SharpClaw.Code.Sessions.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Memory\SharpClaw.Code.Memory.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Git\SharpClaw.Code.Git.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Web\SharpClaw.Code.Web.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Mcp\SharpClaw.Code.Mcp.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Plugins\SharpClaw.Code.Plugins.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Skills\SharpClaw.Code.Skills.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Telemetry\SharpClaw.Code.Telemetry.csproj" />
<ProjectReference Include="..\SharpClaw.Code.Infrastructure\SharpClaw.Code.Infrastructure.csproj" />
<ProjectReference Include="..\SharpClaw.Code.WorkItems\SharpClaw.Code.WorkItems.csproj" />
</ItemGroup>
</Project>