mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
dd06dd89d1
The showcase framework directories better reflect their role as integration examples rather than distributable packages. Renames showcase/packages/ -> showcase/integrations/ and updates the test docker-compose file reference accordingly.
29 lines
960 B
XML
29 lines
960 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UserSecretsId>sales-agent-12345678-1234-1234-1234-123456789abc</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<!-- Exclude the unit-test project's sources and artifacts from this Web SDK project. -->
|
|
<ItemGroup>
|
|
<Compile Remove="tests/**/*.cs" />
|
|
<Content Remove="tests/**/*" />
|
|
<None Remove="tests/**/*" />
|
|
<EmbeddedResource Remove="tests/**/*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Agents.AI.Hosting.AGUI.AspNetCore" Version="1.0.0-preview.251110.1" />
|
|
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="9.10.2-preview.1.25552.1" />
|
|
<PackageReference Include="OpenAI" Version="2.6.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="SharedStateAgent.Tests" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|