You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

seed-memory.csproj 1.3 kB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <RootNamespace>waf_import</RootNamespace>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Nullable>enable</Nullable>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="System.CommandLine" />
  11. <PackageReference Include="Microsoft.SemanticKernel" />
  12. <PackageReference Include="Microsoft.SemanticKernel.Connectors.Qdrant" />
  13. <PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" />
  14. <PackageReference Include="Microsoft.Extensions.Logging.Console" />
  15. <PackageReference Include="Microsoft.Extensions.Logging.Debug" />
  16. <PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" />
  17. <PackageReference Include="Microsoft.Extensions.Configuration.Json" />
  18. <PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
  19. <PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" />
  20. <PackageReference Include="PdfPig" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <None Update="azure-well-architected.pdf">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </None>
  26. </ItemGroup>
  27. </Project>