Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

53 lines
1.9KB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <None Remove="ServicesExternes\ffmpeg.zip" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\RAGService\RAGService.csproj" />
  12. <ProjectReference Include="..\ReActAgentService\ReActAgentService.csproj" />
  13. <ProjectReference Include="..\ToolsService\ToolsService.csproj" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <None Update="ServicesExternes\ffmpeg\avcodec-62.dll">
  17. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  18. </None>
  19. <None Update="ServicesExternes\ffmpeg\avdevice-62.dll">
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </None>
  22. <None Update="ServicesExternes\ffmpeg\avfilter-11.dll">
  23. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  24. </None>
  25. <None Update="ServicesExternes\ffmpeg\avformat-62.dll">
  26. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  27. </None>
  28. <None Update="ServicesExternes\ffmpeg\avutil-60.dll">
  29. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  30. </None>
  31. <None Update="ServicesExternes\ffmpeg\ffmpeg.exe">
  32. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  33. </None>
  34. <None Update="ServicesExternes\ffmpeg\ffplay.exe">
  35. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  36. </None>
  37. <None Update="ServicesExternes\ffmpeg\ffprobe.exe">
  38. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  39. </None>
  40. <None Update="ServicesExternes\ffmpeg\swresample-6.dll">
  41. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  42. </None>
  43. <None Update="ServicesExternes\ffmpeg\swscale-9.dll">
  44. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  45. </None>
  46. </ItemGroup>
  47. </Project>