-
Notifications
You must be signed in to change notification settings - Fork 321
Expand file tree
/
Copy pathRetrievalBot.csproj
More file actions
42 lines (38 loc) · 1.63 KB
/
Copy pathRetrievalBot.csproj
File metadata and controls
42 lines (38 loc) · 1.63 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
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<NoWarn>$(NoWarn);SKEXP0110;SKEXP0010</NoWarn>
<UserSecretsId>b842df34-390f-490d-9dc0-73909363ad16</UserSecretsId>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\**" />
<Content Remove="wwwroot\**" />
<EmbeddedResource Remove="wwwroot\**" />
<None Remove="wwwroot\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Graph" Version="5.105.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AdaptiveCards" Version="3.1.0" />
<PackageReference Include="Microsoft.SemanticKernel.Agents.Core" Version="1.75.0" />
<PackageReference Include="Microsoft.SemanticKernel.Agents.OpenAI" Version="1.29.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.AzureOpenAI" Version="1.29.0" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.OpenAI" Version="1.75.0" />
<PackageReference Include="Microsoft.Agents.Authentication.Msal" Version="1.5.*" />
<PackageReference Include="Microsoft.Agents.Hosting.AspNetCore" Version="1.5.*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="dotnet\src\Microsoft.Agents.M365Copilot.Beta\Microsoft.Agents.M365Copilot.Beta.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>