-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy pathAgentFrameworkWeather.csproj
More file actions
25 lines (21 loc) · 1.03 KB
/
AgentFrameworkWeather.csproj
File metadata and controls
25 lines (21 loc) · 1.03 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>7a8f9d79-5c4c-495f-8d56-1db8168ef8bd</UserSecretsId>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>$(DefineConstants);UseStreaming</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AdaptiveCards" Version="3.1.0" />
<PackageReference Include="Azure.AI.OpenAI" Version="2.8.0-beta.1"/>
<PackageReference Include="Azure.Identity" Version="1.21.0" />
<PackageReference Include="Microsoft.Agents.AI" Version="1.3.0" />
<PackageReference Include="Microsoft.Agents.Authentication.Msal" Version="1.5.*"/>
<PackageReference Include="Microsoft.Agents.Hosting.AspNetCore" Version="1.5.*"/>
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="10.5.1"/>
<PackageReference Include="OpenWeatherMapSharp" Version="4.2.0"/>
</ItemGroup>
</Project>