Skip to content

Commit 98b786d

Browse files
committed
Merged exception bubbling tests.
1 parent e2b3b74 commit 98b786d

1 file changed

Lines changed: 39 additions & 36 deletions

File tree

Lines changed: 39 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,54 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net10.0</TargetFramework>
5-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
6-
<IsPackable>false</IsPackable>
7-
<IsTestProject>true</IsTestProject>
8-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net10.0</TargetFramework>
5+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
6+
<IsPackable>false</IsPackable>
7+
<IsTestProject>true</IsTestProject>
8+
</PropertyGroup>
99

10-
<ItemGroup>
11-
<Compile Include="Stubs\StubChatClient.fs" />
12-
<Compile Include="DurableIdTests.fs" />
13-
<Compile Include="ToolTests.fs" />
14-
<Compile Include="SequentialWorkflowTests.fs" />
15-
<Compile Include="RoutingWorkflowTests.fs" />
16-
<Compile Include="ParallelWorkflowTests.fs" />
17-
<Compile Include="ResultWorkflowTests.fs" />
18-
<Compile Include="ResilienceWorkflowTests.fs" />
19-
<Compile Include="DurableWorkflowTests.fs" />
20-
<Compile Include="CompositionWorkflowTests.fs" />
21-
<Compile Include="StreamingTests.fs" />
22-
<Compile Include="DecorateTests.fs" />
23-
<Compile Include="PollyInProcessTests.fs" />
24-
<Compile Include="ExceptionBubblingTests.fs" />
25-
</ItemGroup>
10+
<ItemGroup>
11+
<Compile Include="Stubs\StubChatClient.fs" />
12+
<Compile Include="DurableIdTests.fs" />
13+
<Compile Include="ToolTests.fs" />
14+
<Compile Include="SequentialWorkflowTests.fs" />
15+
<Compile Include="RoutingWorkflowTests.fs" />
16+
<Compile Include="ParallelWorkflowTests.fs" />
17+
<Compile Include="ResultWorkflowTests.fs" />
18+
<Compile Include="ResilienceWorkflowTests.fs" />
19+
<Compile Include="DurableWorkflowTests.fs" />
20+
<Compile Include="CompositionWorkflowTests.fs" />
21+
<Compile Include="StreamingTests.fs" />
22+
<Compile Include="DecorateTests.fs" />
23+
<Compile Include="PollyInProcessTests.fs" />
24+
<Compile Include="ExceptionBubblingTests.fs" />
25+
</ItemGroup>
2626

27-
<ItemGroup>
28-
<PackageReference Include="AgentNet.Durable" Version="1.0.0-rc.3" />
29-
<PackageReference Include="AgentNet.InProcess.Polly" Version="1.0.0-rc.4" />
30-
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" />
31-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
32-
<PackageReference Include="NUnit" Version="4.4.0" />
33-
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
34-
<PackageReference Include="Unquote" Version="7.0.1" />
35-
</ItemGroup>
27+
<ItemGroup>
28+
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" />
29+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
30+
<PackageReference Include="NUnit" Version="4.4.0" />
31+
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
32+
<PackageReference Include="Unquote" Version="7.0.1" />
33+
</ItemGroup>
34+
35+
<!-- For testing live packages.
36+
<ItemGroup>
37+
<PackageReference Include="AgentNet.Durable" Version="1.0.0-rc.3" />
38+
<PackageReference Include="AgentNet.InProcess.Polly" Version="1.0.0-rc.5" />
39+
</ItemGroup>
40+
-->
3641

37-
<!--
3842
<ItemGroup>
3943
<ProjectReference Include="..\AgentNet\AgentNet.fsproj" />
4044
<ProjectReference Include="..\AgentNet.InProcess\AgentNet.InProcess.fsproj" />
4145
<ProjectReference Include="..\AgentNet.InProcess.Polly\AgentNet.InProcess.Polly.fsproj" />
4246
<ProjectReference Include="..\AgentNet.Durable\AgentNet.Durable.fsproj" />
4347
<ProjectReference Include="..\AgentNet.Interop\AgentNet.Interop.csproj" />
4448
</ItemGroup>
45-
-->
4649

47-
<ItemGroup>
48-
<PackageReference Update="FSharp.Core" Version="8.0.100" />
49-
</ItemGroup>
50+
<ItemGroup>
51+
<PackageReference Update="FSharp.Core" Version="8.0.100" />
52+
</ItemGroup>
5053

5154
</Project>

0 commit comments

Comments
 (0)