-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStockAdvisorFS.fsproj
More file actions
33 lines (27 loc) · 1 KB
/
StockAdvisorFS.fsproj
File metadata and controls
33 lines (27 loc) · 1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="StockTools.fs" />
<Compile Include="AgentChatSample.fs" />
<Compile Include="WorkflowSample.fs" />
<Compile Include="SingleAnalysisSample.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AgentNet\AgentNet.fsproj" />
<ProjectReference Include="..\AgentNet.InProcess\AgentNet.InProcess.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNetEnv" Version="3.1.1" />
<PackageReference Include="Anthropic" Version="12.8.0" />
<PackageReference Include="Microsoft.Agents.AI.OpenAI" />
<PackageReference Include="Microsoft.Agents.AI.Workflows" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="8.0.100" />
</ItemGroup>
</Project>