2026-08-26 18:06:02 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2026-09-01 14:07:46 +08:00
|
|
|
<RootNamespace>MAF1.Core</RootNamespace>
|
|
|
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
2026-08-26 18:06:02 +08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2026-09-01 14:07:46 +08:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="Agents\AgentStepResult.cs" />
|
|
|
|
|
<Compile Include="Agents\FileCity\CityExtraction.cs" />
|
|
|
|
|
<Compile Include="Agents\FileCity\FileCityAgent.cs" />
|
|
|
|
|
<Compile Include="Agents\Weather\WeatherAgent.cs" />
|
|
|
|
|
<Compile Include="Decisions\DecisionModels.cs" />
|
|
|
|
|
<Compile Include="PluginContract\PluginManifest.cs" />
|
|
|
|
|
<Compile Include="PluginContract\PluginStdio.cs" />
|
|
|
|
|
<Compile Include="Tools\FileTools.cs" />
|
|
|
|
|
<Compile Include="Tools\WeatherOptions.cs" />
|
|
|
|
|
<Compile Include="Tools\WeatherTools.cs" />
|
|
|
|
|
<Compile Include="Utils\AgentFactory.cs" />
|
|
|
|
|
<Compile Include="Utils\JsonText.cs" />
|
|
|
|
|
<Compile Include="Utils\LlmOptions.cs" />
|
|
|
|
|
<Compile Include="Utils\WindowsConsole.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2026-08-26 18:06:02 +08:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Azure.AI.OpenAI" Version="2.1.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.19.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="10.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|