Merge dotnet conflict (#3)

This commit is contained in:
Xiaoyun Zhang 2024-09-30 16:32:48 -07:00 committed by GitHub
parent 5cb5bda522
commit 18d52f606a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
184 changed files with 423 additions and 629 deletions

View File

@ -59,7 +59,7 @@ dotnet_style_prefer_conditional_expression_over_assignment = false
dotnet_style_prefer_auto_properties = false
# Use language keywords instead of framework type names for type references
dotnet_style_predefined_type_for_locals_parameters_members = true:error
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
dotnet_style_predefined_type_for_member_access = true:error
# Prefer read-only on fields
@ -224,6 +224,14 @@ dotnet_diagnostic.IDE0035.severity = warning # Remove unreachable code
dotnet_diagnostic.IDE0161.severity = warning # Use file-scoped namespace
csharp_style_var_elsewhere = true:suggestion # Prefer 'var' everywhere
csharp_prefer_simple_using_statement = true:suggestion
csharp_style_namespace_declarations = block_scoped:silent
csharp_style_prefer_method_group_conversion = true:silent
csharp_style_prefer_top_level_statements = true:silent
csharp_style_prefer_primary_constructors = true:suggestion
csharp_style_expression_bodied_lambdas = true:silent
csharp_style_prefer_local_over_anonymous_function = true:suggestion
dotnet_diagnostic.CA2016.severity = suggestion
# disable check for generated code
[*.generated.cs]
@ -340,7 +348,7 @@ dotnet_diagnostic.CA1305.severity = suggestion
dotnet_diagnostic.CA1507.severity = warning
# CA1510: Use ArgumentNullException throw helper
dotnet_diagnostic.CA1510.severity = warning
dotnet_diagnostic.CA1510.severity = none
# CA1511: Use ArgumentException throw helper
dotnet_diagnostic.CA1511.severity = warning
@ -482,16 +490,16 @@ dotnet_diagnostic.CA2013.severity = warning
dotnet_diagnostic.CA2014.severity = warning
# CA2016: Forward the 'CancellationToken' parameter to methods that take one
dotnet_diagnostic.CA2016.severity = warning
dotnet_diagnostic.CA2016.severity = none
# CA2200: Rethrow to preserve stack details
dotnet_diagnostic.CA2200.severity = warning
# CA2201: Do not raise reserved exception types
dotnet_diagnostic.CA2201.severity = warning
dotnet_diagnostic.CA2201.severity = none
# CA2208: Instantiate argument exceptions correctly
dotnet_diagnostic.CA2208.severity = warning
dotnet_diagnostic.CA2208.severity = none
# CA2245: Do not assign a property to itself
dotnet_diagnostic.CA2245.severity = warning
@ -575,7 +583,7 @@ dotnet_diagnostic.CA1018.severity = suggestion
# CA1507: Use nameof to express symbol names
dotnet_diagnostic.CA1507.severity = suggestion
# CA1510: Use ArgumentNullException throw helper
dotnet_diagnostic.CA1510.severity = suggestion
dotnet_diagnostic.CA1510.severity = none
# CA1511: Use ArgumentException throw helper
dotnet_diagnostic.CA1511.severity = suggestion
# CA1512: Use ArgumentOutOfRangeException throw helper
@ -641,7 +649,7 @@ dotnet_diagnostic.CA2008.severity = suggestion
# CA2012: Use ValueTask correctly
dotnet_diagnostic.CA2012.severity = suggestion
# CA2201: Do not raise reserved exception types
dotnet_diagnostic.CA2201.severity = suggestion
dotnet_diagnostic.CA2201.severity = none
# CA2249: Use string.Contains instead of string.IndexOf to improve readability.
dotnet_diagnostic.CA2249.severity = suggestion
# IDE0005: Remove unnecessary usings
@ -678,10 +686,10 @@ dotnet_style_operator_placement_when_wrapping = beginning_of_line
tab_width = 4
indent_size = 4
end_of_line = crlf
dotnet_style_coalesce_expression = true:suggestion
dotnet_style_null_propagation = true:suggestion
dotnet_style_coalesce_expression = true:error
dotnet_style_null_propagation = true:error
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
dotnet_style_prefer_auto_properties = true:silent
dotnet_style_prefer_auto_properties = false:silent
dotnet_style_object_initializer = true:suggestion
dotnet_style_collection_initializer = true:suggestion
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion

View File

@ -1,4 +1,3 @@
<<<<<<< HEAD
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34322.80
@ -78,33 +77,59 @@ EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutoGen.OpenAI", "src\AutoGen.OpenAI\AutoGen.OpenAI.csproj", "{3AF1CBEC-2877-41E9-92AE-3A391B2AA9E8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutoGen.OpenAI.Tests", "test\AutoGen.OpenAI.Tests\AutoGen.OpenAI.Tests.csproj", "{42A8251C-E7B3-47BB-A82E-459952EBE132}"
=======

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{DC5E7967-F187-4E42-9B71-835E79501288}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AutoGen.Agents.Client", "src\Microsoft.AutoGen.Agents.Client\Microsoft.AutoGen.Agents.Client.csproj", "{687DA41E-83A6-418A-918B-8E2C20C6D1E3}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AutoGen.Agents", "src\Microsoft.AutoGen.Agents\Microsoft.AutoGen.Agents.csproj", "{F716F5EA-DE34-4B3D-82F8-64B0B5C4A795}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AutoGen.Agents.Runtime", "src\Microsoft.AutoGen.Agents.Runtime\Microsoft.AutoGen.Agents.Runtime.csproj", "{D4EC36E1-E197-47C2-A45A-CAAFEB6B9F09}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AutoGen.Agents.Client", "src\Microsoft.AutoGen.Agents.Client\Microsoft.AutoGen.Agents.Client.csproj", "{6DA7A583-DFDD-489A-884F-D12C58022A05}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AutoGen.Agents", "src\Microsoft.AutoGen.Agents\Microsoft.AutoGen.Agents.csproj", "{E6171E39-6DE2-46C9-9978-E2F946530CBA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AutoGen.Agents.Extensions.CloudEvents", "src\Microsoft.AutoGen.Agents.Extensions\CloudEvents\Microsoft.AutoGen.Agents.Extensions.CloudEvents.csproj", "{C1E69C6D-066E-42E4-83C6-D9A4C84A6670}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Microsoft.AutoGen.Agents.Extensions", "Microsoft.AutoGen.Agents.Extensions", "{2CF811BD-3513-4A1B-8020-645C0315CDB4}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AutoGen.Agents.Extensions.SemanticKernel", "src\Microsoft.AutoGen.Agents.Extensions\SemanticKernel\Microsoft.AutoGen.Agents.Extensions.SemanticKernel.csproj", "{F520E059-9B54-4B79-8716-FEF09447C928}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AutoGen.Agents.Extensions.CloudEvents", "src\Microsoft.AutoGen.Agents.Extensions\CloudEvents\Microsoft.AutoGen.Agents.Extensions.CloudEvents.csproj", "{351CFFFB-6418-4C81-A697-BA24D1D43307}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AutoGen.Agents.Runtime", "src\Microsoft.AutoGen.Agents.Runtime\Microsoft.AutoGen.Agents.Runtime.csproj", "{FEF07BCC-DBE3-4592-9FD2-565A091F19DC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AutoGen.Agents.Extensions.SemanticKernel", "src\Microsoft.AutoGen.Agents.Extensions\SemanticKernel\Microsoft.AutoGen.Agents.Extensions.SemanticKernel.csproj", "{2E6E731B-2CFE-4F74-B3C4-EE0E2EF02FB9}"
>>>>>>> agnext_main
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AgentChat", "AgentChat", "{4BB66E06-37D8-45A0-9B97-DE590AFBA340}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AgentChat", "AgentChat", "{C7A2D42D-9277-47AC-862B-D86DF9D6AD48}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "dev-team", "dev-team", "{616F30DF-1F41-4047-BAA4-64BA03BF5AEA}"
ProjectSection(SolutionItems) = preProject
sample\dev-team\DevTeam.ServiceDefaults\DevTeam.ServiceDefaults.csproj = sample\dev-team\DevTeam.ServiceDefaults\DevTeam.ServiceDefaults.csproj
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DevTeam.AgentHost", "sample\dev-team\DevTeam.AgentHost\DevTeam.AgentHost.csproj", "{7228A701-C79D-4E15-BF45-48D11F721A84}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DevTeam.Agents", "sample\dev-team\DevTeam.Agents\DevTeam.Agents.csproj", "{EDECD35D-6EB1-4CA8-A175-A66588C3481E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DevTeam.AppHost", "sample\dev-team\DevTeam.AppHost\DevTeam.AppHost.csproj", "{F2F13EAF-05C6-4E90-B2E4-3FA0290D7F6E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DevTeam.Backend", "sample\dev-team\DevTeam.Backend\DevTeam.Backend.csproj", "{D826D5E4-31F4-4AB5-AC86-F7B4AD79314B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DevTeam.Shared", "sample\dev-team\DevTeam.Shared\DevTeam.Shared.csproj", "{D9F65DFD-368B-47DB-8BB5-0C74DED7F439}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HelloAgents", "HelloAgents", "{F7AC0FF1-8500-49C6-8CB3-97C6D52C8BEF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{243E768F-EA7D-4AF1-B625-0398440BB1AB}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
spelling.dic = spelling.dic
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloAgents.Agents", "sample\HelloAgents\HelloAgents.Agents\HelloAgents.Agents.csproj", "{ECCE44EE-3934-448E-A9A5-3403117EF0B5}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloAgents.ApiService", "sample\HelloAgents\HelloAgents.ApiService\HelloAgents.ApiService.csproj", "{74ADFF5D-80AF-4A6E-9794-746BDE1A41D1}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloAgents.AppHost", "sample\HelloAgents\HelloAgents.AppHost\HelloAgents.AppHost.csproj", "{031FED7F-97ED-4AA1-B408-88BD3B70A463}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloAgents.ServiceDefaults", "sample\HelloAgents\HelloAgents.ServiceDefaults\HelloAgents.ServiceDefaults.csproj", "{6B88F4B3-26AB-4034-B0AC-5BA6EEDEB8E5}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloAgents.Web", "sample\HelloAgents\HelloAgents.Web\HelloAgents.Web.csproj", "{8B56BE22-5CF4-44BB-AFA5-732FEA2AFF0B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
<<<<<<< HEAD
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B2B27ACB-AA50-4FED-A06C-3AD6B4218188}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B2B27ACB-AA50-4FED-A06C-3AD6B4218188}.Debug|Any CPU.Build.0 = Debug|Any CPU
@ -246,85 +271,127 @@ Global
{42A8251C-E7B3-47BB-A82E-459952EBE132}.Debug|Any CPU.Build.0 = Debug|Any CPU
{42A8251C-E7B3-47BB-A82E-459952EBE132}.Release|Any CPU.ActiveCfg = Release|Any CPU
{42A8251C-E7B3-47BB-A82E-459952EBE132}.Release|Any CPU.Build.0 = Release|Any CPU
{F716F5EA-DE34-4B3D-82F8-64B0B5C4A795}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F716F5EA-DE34-4B3D-82F8-64B0B5C4A795}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F716F5EA-DE34-4B3D-82F8-64B0B5C4A795}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F716F5EA-DE34-4B3D-82F8-64B0B5C4A795}.Release|Any CPU.Build.0 = Release|Any CPU
{6DA7A583-DFDD-489A-884F-D12C58022A05}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6DA7A583-DFDD-489A-884F-D12C58022A05}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6DA7A583-DFDD-489A-884F-D12C58022A05}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6DA7A583-DFDD-489A-884F-D12C58022A05}.Release|Any CPU.Build.0 = Release|Any CPU
{C1E69C6D-066E-42E4-83C6-D9A4C84A6670}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C1E69C6D-066E-42E4-83C6-D9A4C84A6670}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C1E69C6D-066E-42E4-83C6-D9A4C84A6670}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C1E69C6D-066E-42E4-83C6-D9A4C84A6670}.Release|Any CPU.Build.0 = Release|Any CPU
{F520E059-9B54-4B79-8716-FEF09447C928}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F520E059-9B54-4B79-8716-FEF09447C928}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F520E059-9B54-4B79-8716-FEF09447C928}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F520E059-9B54-4B79-8716-FEF09447C928}.Release|Any CPU.Build.0 = Release|Any CPU
{FEF07BCC-DBE3-4592-9FD2-565A091F19DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FEF07BCC-DBE3-4592-9FD2-565A091F19DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FEF07BCC-DBE3-4592-9FD2-565A091F19DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FEF07BCC-DBE3-4592-9FD2-565A091F19DC}.Release|Any CPU.Build.0 = Release|Any CPU
{7228A701-C79D-4E15-BF45-48D11F721A84}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7228A701-C79D-4E15-BF45-48D11F721A84}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7228A701-C79D-4E15-BF45-48D11F721A84}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7228A701-C79D-4E15-BF45-48D11F721A84}.Release|Any CPU.Build.0 = Release|Any CPU
{EDECD35D-6EB1-4CA8-A175-A66588C3481E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EDECD35D-6EB1-4CA8-A175-A66588C3481E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EDECD35D-6EB1-4CA8-A175-A66588C3481E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EDECD35D-6EB1-4CA8-A175-A66588C3481E}.Release|Any CPU.Build.0 = Release|Any CPU
{F2F13EAF-05C6-4E90-B2E4-3FA0290D7F6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F2F13EAF-05C6-4E90-B2E4-3FA0290D7F6E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F2F13EAF-05C6-4E90-B2E4-3FA0290D7F6E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F2F13EAF-05C6-4E90-B2E4-3FA0290D7F6E}.Release|Any CPU.Build.0 = Release|Any CPU
{D826D5E4-31F4-4AB5-AC86-F7B4AD79314B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D826D5E4-31F4-4AB5-AC86-F7B4AD79314B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D826D5E4-31F4-4AB5-AC86-F7B4AD79314B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D826D5E4-31F4-4AB5-AC86-F7B4AD79314B}.Release|Any CPU.Build.0 = Release|Any CPU
{D9F65DFD-368B-47DB-8BB5-0C74DED7F439}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D9F65DFD-368B-47DB-8BB5-0C74DED7F439}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D9F65DFD-368B-47DB-8BB5-0C74DED7F439}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D9F65DFD-368B-47DB-8BB5-0C74DED7F439}.Release|Any CPU.Build.0 = Release|Any CPU
{ECCE44EE-3934-448E-A9A5-3403117EF0B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ECCE44EE-3934-448E-A9A5-3403117EF0B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ECCE44EE-3934-448E-A9A5-3403117EF0B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ECCE44EE-3934-448E-A9A5-3403117EF0B5}.Release|Any CPU.Build.0 = Release|Any CPU
{74ADFF5D-80AF-4A6E-9794-746BDE1A41D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{74ADFF5D-80AF-4A6E-9794-746BDE1A41D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{74ADFF5D-80AF-4A6E-9794-746BDE1A41D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{74ADFF5D-80AF-4A6E-9794-746BDE1A41D1}.Release|Any CPU.Build.0 = Release|Any CPU
{031FED7F-97ED-4AA1-B408-88BD3B70A463}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{031FED7F-97ED-4AA1-B408-88BD3B70A463}.Debug|Any CPU.Build.0 = Debug|Any CPU
{031FED7F-97ED-4AA1-B408-88BD3B70A463}.Release|Any CPU.ActiveCfg = Release|Any CPU
{031FED7F-97ED-4AA1-B408-88BD3B70A463}.Release|Any CPU.Build.0 = Release|Any CPU
{6B88F4B3-26AB-4034-B0AC-5BA6EEDEB8E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6B88F4B3-26AB-4034-B0AC-5BA6EEDEB8E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6B88F4B3-26AB-4034-B0AC-5BA6EEDEB8E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6B88F4B3-26AB-4034-B0AC-5BA6EEDEB8E5}.Release|Any CPU.Build.0 = Release|Any CPU
{8B56BE22-5CF4-44BB-AFA5-732FEA2AFF0B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8B56BE22-5CF4-44BB-AFA5-732FEA2AFF0B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8B56BE22-5CF4-44BB-AFA5-732FEA2AFF0B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8B56BE22-5CF4-44BB-AFA5-732FEA2AFF0B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{B2B27ACB-AA50-4FED-A06C-3AD6B4218188} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{B2B27ACB-AA50-4FED-A06C-3AD6B4218188} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{FDD99AEC-4C57-4020-B23F-650612856102} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{3FFD14E3-D6BC-4EA7-97A2-D21733060FD6} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{3FFD14E3-D6BC-4EA7-97A2-D21733060FD6} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{05A2FAD8-03B0-4B2F-82AF-2F6BF0F050E5} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{7EBF916A-A7B1-4B74-AF10-D705B7A18F58} = {FBFEAD1F-29EB-4D99-A672-0CD8473E10B9}
{B61D8008-7FB7-4C0E-8044-3A74AA63A596} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{F98BDA9B-8657-4BA8-9B03-BAEA454CAE60} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{45D6FC80-36F3-4967-9663-E20B63824621} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{D58D43D1-0617-4A3D-9932-C773E6398535} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{63445BB7-DBB9-4AEF-9D6F-98BBE75EE1EC} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{6585D1A4-3D97-4D76-A688-1933B61AEB19} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{7EBF916A-A7B1-4B74-AF10-D705B7A18F58} = {C7A2D42D-9277-47AC-862B-D86DF9D6AD48}
{B61D8008-7FB7-4C0E-8044-3A74AA63A596} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{F98BDA9B-8657-4BA8-9B03-BAEA454CAE60} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{45D6FC80-36F3-4967-9663-E20B63824621} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{D58D43D1-0617-4A3D-9932-C773E6398535} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{63445BB7-DBB9-4AEF-9D6F-98BBE75EE1EC} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{6585D1A4-3D97-4D76-A688-1933B61AEB19} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{15441693-3659-4868-B6C1-B106F52FF3BA} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{257FFD71-08E5-40C7-AB04-6A81A78EB410} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{257FFD71-08E5-40C7-AB04-6A81A78EB410} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{E2EF5E66-683C-4DDC-8ADA-5F676502B9BA} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{1DFABC4A-8458-4875-8DCB-59F3802DAC65} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{D36A85F9-C172-487D-8192-6BFE5D05B4A7} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{B61388CA-DC73-4B7F-A7B2-7B9A86C9229E} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{9F9E6DED-3D92-4970-909A-70FC11F1A665} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{9F9E6DED-3D92-4970-909A-70FC11F1A665} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{03E31CAA-3728-48D3-B936-9F11CF6C18FE} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{93AA4D0D-6EE4-44D5-AD77-7F73A3934544} = {FBFEAD1F-29EB-4D99-A672-0CD8473E10B9}
{52958A60-3FF7-4243-9058-34A6E4F55C31} = {FBFEAD1F-29EB-4D99-A672-0CD8473E10B9}
{6A95E113-B824-4524-8F13-CD0C3E1C8804} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{93AA4D0D-6EE4-44D5-AD77-7F73A3934544} = {C7A2D42D-9277-47AC-862B-D86DF9D6AD48}
{52958A60-3FF7-4243-9058-34A6E4F55C31} = {C7A2D42D-9277-47AC-862B-D86DF9D6AD48}
{6A95E113-B824-4524-8F13-CD0C3E1C8804} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{815E937E-86D6-4476-9EC6-B7FBCBBB5DB6} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{834B4E85-64E5-4382-8465-548F332E5298} = {FBFEAD1F-29EB-4D99-A672-0CD8473E10B9}
{EFE0DC86-80FC-4D52-95B7-07654BA1A769} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{834B4E85-64E5-4382-8465-548F332E5298} = {C7A2D42D-9277-47AC-862B-D86DF9D6AD48}
{EFE0DC86-80FC-4D52-95B7-07654BA1A769} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{8EA16BAB-465A-4C07-ABC4-1070D40067E9} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{19679B75-CE3A-4DF0-A3F0-CA369D2760A4} = {FBFEAD1F-29EB-4D99-A672-0CD8473E10B9}
{19679B75-CE3A-4DF0-A3F0-CA369D2760A4} = {C7A2D42D-9277-47AC-862B-D86DF9D6AD48}
{6B82F26D-5040-4453-B21B-C8D1F913CE4C} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{0E635268-351C-4A6B-A28D-593D868C2CA4} = {FBFEAD1F-29EB-4D99-A672-0CD8473E10B9}
{12079C18-A519-403F-BBFD-200A36A0C083} = {FBFEAD1F-29EB-4D99-A672-0CD8473E10B9}
{5C45981D-1319-4C25-935C-83D411CB28DF} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{0E635268-351C-4A6B-A28D-593D868C2CA4} = {C7A2D42D-9277-47AC-862B-D86DF9D6AD48}
{12079C18-A519-403F-BBFD-200A36A0C083} = {C7A2D42D-9277-47AC-862B-D86DF9D6AD48}
{5C45981D-1319-4C25-935C-83D411CB28DF} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{5970868F-831E-418F-89A9-4EC599563E16} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{143725E2-206C-4D37-93E4-9EDF699826B2} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{3AF1CBEC-2877-41E9-92AE-3A391B2AA9E8} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{3AF1CBEC-2877-41E9-92AE-3A391B2AA9E8} = {4BB66E06-37D8-45A0-9B97-DE590AFBA340}
{42A8251C-E7B3-47BB-A82E-459952EBE132} = {F823671B-3ECA-4AE6-86DA-25E920D3FE64}
{F716F5EA-DE34-4B3D-82F8-64B0B5C4A795} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{6DA7A583-DFDD-489A-884F-D12C58022A05} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{C1E69C6D-066E-42E4-83C6-D9A4C84A6670} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{F520E059-9B54-4B79-8716-FEF09447C928} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{FEF07BCC-DBE3-4592-9FD2-565A091F19DC} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{4BB66E06-37D8-45A0-9B97-DE590AFBA340} = {18BF8DD7-0585-48BF-8F97-AD333080CE06}
{C7A2D42D-9277-47AC-862B-D86DF9D6AD48} = {FBFEAD1F-29EB-4D99-A672-0CD8473E10B9}
{616F30DF-1F41-4047-BAA4-64BA03BF5AEA} = {FBFEAD1F-29EB-4D99-A672-0CD8473E10B9}
{7228A701-C79D-4E15-BF45-48D11F721A84} = {616F30DF-1F41-4047-BAA4-64BA03BF5AEA}
{EDECD35D-6EB1-4CA8-A175-A66588C3481E} = {616F30DF-1F41-4047-BAA4-64BA03BF5AEA}
{F2F13EAF-05C6-4E90-B2E4-3FA0290D7F6E} = {616F30DF-1F41-4047-BAA4-64BA03BF5AEA}
{D826D5E4-31F4-4AB5-AC86-F7B4AD79314B} = {616F30DF-1F41-4047-BAA4-64BA03BF5AEA}
{D9F65DFD-368B-47DB-8BB5-0C74DED7F439} = {616F30DF-1F41-4047-BAA4-64BA03BF5AEA}
{F7AC0FF1-8500-49C6-8CB3-97C6D52C8BEF} = {FBFEAD1F-29EB-4D99-A672-0CD8473E10B9}
{ECCE44EE-3934-448E-A9A5-3403117EF0B5} = {F7AC0FF1-8500-49C6-8CB3-97C6D52C8BEF}
{74ADFF5D-80AF-4A6E-9794-746BDE1A41D1} = {F7AC0FF1-8500-49C6-8CB3-97C6D52C8BEF}
{031FED7F-97ED-4AA1-B408-88BD3B70A463} = {F7AC0FF1-8500-49C6-8CB3-97C6D52C8BEF}
{6B88F4B3-26AB-4034-B0AC-5BA6EEDEB8E5} = {F7AC0FF1-8500-49C6-8CB3-97C6D52C8BEF}
{8B56BE22-5CF4-44BB-AFA5-732FEA2AFF0B} = {F7AC0FF1-8500-49C6-8CB3-97C6D52C8BEF}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {93384647-528D-46C8-922C-8DB36A382F0B}
EndGlobalSection
EndGlobal
=======
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{687DA41E-83A6-418A-918B-8E2C20C6D1E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{687DA41E-83A6-418A-918B-8E2C20C6D1E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{687DA41E-83A6-418A-918B-8E2C20C6D1E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{687DA41E-83A6-418A-918B-8E2C20C6D1E3}.Release|Any CPU.Build.0 = Release|Any CPU
{D4EC36E1-E197-47C2-A45A-CAAFEB6B9F09}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D4EC36E1-E197-47C2-A45A-CAAFEB6B9F09}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D4EC36E1-E197-47C2-A45A-CAAFEB6B9F09}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D4EC36E1-E197-47C2-A45A-CAAFEB6B9F09}.Release|Any CPU.Build.0 = Release|Any CPU
{E6171E39-6DE2-46C9-9978-E2F946530CBA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E6171E39-6DE2-46C9-9978-E2F946530CBA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E6171E39-6DE2-46C9-9978-E2F946530CBA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E6171E39-6DE2-46C9-9978-E2F946530CBA}.Release|Any CPU.Build.0 = Release|Any CPU
{351CFFFB-6418-4C81-A697-BA24D1D43307}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{351CFFFB-6418-4C81-A697-BA24D1D43307}.Debug|Any CPU.Build.0 = Debug|Any CPU
{351CFFFB-6418-4C81-A697-BA24D1D43307}.Release|Any CPU.ActiveCfg = Release|Any CPU
{351CFFFB-6418-4C81-A697-BA24D1D43307}.Release|Any CPU.Build.0 = Release|Any CPU
{2E6E731B-2CFE-4F74-B3C4-EE0E2EF02FB9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2E6E731B-2CFE-4F74-B3C4-EE0E2EF02FB9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2E6E731B-2CFE-4F74-B3C4-EE0E2EF02FB9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2E6E731B-2CFE-4F74-B3C4-EE0E2EF02FB9}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{687DA41E-83A6-418A-918B-8E2C20C6D1E3} = {DC5E7967-F187-4E42-9B71-835E79501288}
{D4EC36E1-E197-47C2-A45A-CAAFEB6B9F09} = {DC5E7967-F187-4E42-9B71-835E79501288}
{E6171E39-6DE2-46C9-9978-E2F946530CBA} = {DC5E7967-F187-4E42-9B71-835E79501288}
{2CF811BD-3513-4A1B-8020-645C0315CDB4} = {DC5E7967-F187-4E42-9B71-835E79501288}
{351CFFFB-6418-4C81-A697-BA24D1D43307} = {2CF811BD-3513-4A1B-8020-645C0315CDB4}
{2E6E731B-2CFE-4F74-B3C4-EE0E2EF02FB9} = {2CF811BD-3513-4A1B-8020-645C0315CDB4}
EndGlobalSection
EndGlobal
>>>>>>> agnext_main

View File

@ -1,150 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{9CFC5A2B-AE61-4840-9E1B-FC490EF4C99B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AutoGen.Agents.Client", "src\Microsoft.AutoGen.Agents.Client\Microsoft.AutoGen.Agents.Client.csproj", "{38494BE5-9E87-47E3-8439-D828FBAB0C7A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AutoGen.Agents.Runtime", "src\Microsoft.AutoGen.Agents.Runtime\Microsoft.AutoGen.Agents.Runtime.csproj", "{6D11A33E-644C-47FC-B0C5-4697B9AE598E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AutoGen.Agents", "src\Microsoft.AutoGen.Agents\Microsoft.AutoGen.Agents.csproj", "{A2864CB0-C745-4B59-8219-74AD403BC68F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Microsoft.AutoGen.Agents.Extensions", "Microsoft.AutoGen.Agents.Extensions", "{2AFA283F-345A-4E3D-BF60-FBD727B841BE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AutoGen.Agents.Extensions.CloudEvents", "src\Microsoft.AutoGen.Agents.Extensions\CloudEvents\Microsoft.AutoGen.Agents.Extensions.CloudEvents.csproj", "{286218DA-7A24-4EA1-9073-20B2E266511F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AutoGen.Agents.Extensions.SemanticKernel", "src\Microsoft.AutoGen.Agents.Extensions\SemanticKernel\Microsoft.AutoGen.Agents.Extensions.SemanticKernel.csproj", "{32E844CB-C1C5-4C44-9105-34A24EF76EE7}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{65402BF3-B027-429E-9333-1473364928FF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HelloAgents", "HelloAgents", "{DB196600-333E-41F8-B441-3DF86F644551}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloAgents", "samples\HelloAgents\HelloAgents.Agents\HelloAgents.Agents.csproj", "{573B378C-462D-4E00-91AB-F154E07763E8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloAgents.ApiService", "samples\HelloAgents\HelloAgents.ApiService\HelloAgents.ApiService.csproj", "{437B9B23-9D3D-45CF-A0C8-20506B6F8601}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloAgents.AppHost", "samples\HelloAgents\HelloAgents.AppHost\HelloAgents.AppHost.csproj", "{7F9B6CF5-4BFA-429B-A0FC-C66C488F33E3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloAgents.ServiceDefaults", "samples\HelloAgents\HelloAgents.ServiceDefaults\HelloAgents.ServiceDefaults.csproj", "{B0120BE5-E934-4F25-ACDE-BE9570F8C8B0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloAgents.Web", "samples\HelloAgents\HelloAgents.Web\HelloAgents.Web.csproj", "{8F2D989B-D302-4DE4-8574-BBB525ACCB28}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "dev-team", "dev-team", "{8CE37D11-9221-4274-98C0-F63F8E4CB711}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DevTeam.AgentHost", "samples\dev-team\DevTeam.AgentHost\DevTeam.AgentHost.csproj", "{CEB2FAE6-4260-4DC9-8557-AAD982B41365}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DevTeam.Agents", "samples\dev-team\DevTeam.Agents\DevTeam.Agents.csproj", "{ECD961B6-88D7-467E-AEAA-7530835C7551}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DevTeam.AppHost", "samples\dev-team\DevTeam.AppHost\DevTeam.AppHost.csproj", "{E9E4500B-FE22-482C-AA70-FECDFB298891}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DevTeam.Backend", "samples\dev-team\DevTeam.Backend\DevTeam.Backend.csproj", "{E546DC7E-E4F1-430A-8B4C-F40D1FAF3CF0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DevTeam.ServiceDefaults", "samples\dev-team\DevTeam.ServiceDefaults\DevTeam.ServiceDefaults.csproj", "{4E6C9624-39E7-41B7-B40A-6C70190CE87A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DevTeam.Shared", "samples\dev-team\DevTeam.Shared\DevTeam.Shared.csproj", "{388CDF50-75E6-40D7-B843-74FD853C4DCB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "seed-memory", "samples\dev-team\seed-memory\seed-memory.csproj", "{4A74F7F1-989F-4740-BE2E-B04D9B288946}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{38494BE5-9E87-47E3-8439-D828FBAB0C7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{38494BE5-9E87-47E3-8439-D828FBAB0C7A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{38494BE5-9E87-47E3-8439-D828FBAB0C7A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{38494BE5-9E87-47E3-8439-D828FBAB0C7A}.Release|Any CPU.Build.0 = Release|Any CPU
{6D11A33E-644C-47FC-B0C5-4697B9AE598E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6D11A33E-644C-47FC-B0C5-4697B9AE598E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6D11A33E-644C-47FC-B0C5-4697B9AE598E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6D11A33E-644C-47FC-B0C5-4697B9AE598E}.Release|Any CPU.Build.0 = Release|Any CPU
{A2864CB0-C745-4B59-8219-74AD403BC68F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A2864CB0-C745-4B59-8219-74AD403BC68F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A2864CB0-C745-4B59-8219-74AD403BC68F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A2864CB0-C745-4B59-8219-74AD403BC68F}.Release|Any CPU.Build.0 = Release|Any CPU
{286218DA-7A24-4EA1-9073-20B2E266511F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{286218DA-7A24-4EA1-9073-20B2E266511F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{286218DA-7A24-4EA1-9073-20B2E266511F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{286218DA-7A24-4EA1-9073-20B2E266511F}.Release|Any CPU.Build.0 = Release|Any CPU
{32E844CB-C1C5-4C44-9105-34A24EF76EE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{32E844CB-C1C5-4C44-9105-34A24EF76EE7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{32E844CB-C1C5-4C44-9105-34A24EF76EE7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{32E844CB-C1C5-4C44-9105-34A24EF76EE7}.Release|Any CPU.Build.0 = Release|Any CPU
{573B378C-462D-4E00-91AB-F154E07763E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{573B378C-462D-4E00-91AB-F154E07763E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{573B378C-462D-4E00-91AB-F154E07763E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{573B378C-462D-4E00-91AB-F154E07763E8}.Release|Any CPU.Build.0 = Release|Any CPU
{437B9B23-9D3D-45CF-A0C8-20506B6F8601}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{437B9B23-9D3D-45CF-A0C8-20506B6F8601}.Debug|Any CPU.Build.0 = Debug|Any CPU
{437B9B23-9D3D-45CF-A0C8-20506B6F8601}.Release|Any CPU.ActiveCfg = Release|Any CPU
{437B9B23-9D3D-45CF-A0C8-20506B6F8601}.Release|Any CPU.Build.0 = Release|Any CPU
{7F9B6CF5-4BFA-429B-A0FC-C66C488F33E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7F9B6CF5-4BFA-429B-A0FC-C66C488F33E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7F9B6CF5-4BFA-429B-A0FC-C66C488F33E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7F9B6CF5-4BFA-429B-A0FC-C66C488F33E3}.Release|Any CPU.Build.0 = Release|Any CPU
{B0120BE5-E934-4F25-ACDE-BE9570F8C8B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B0120BE5-E934-4F25-ACDE-BE9570F8C8B0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B0120BE5-E934-4F25-ACDE-BE9570F8C8B0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B0120BE5-E934-4F25-ACDE-BE9570F8C8B0}.Release|Any CPU.Build.0 = Release|Any CPU
{8F2D989B-D302-4DE4-8574-BBB525ACCB28}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8F2D989B-D302-4DE4-8574-BBB525ACCB28}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8F2D989B-D302-4DE4-8574-BBB525ACCB28}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8F2D989B-D302-4DE4-8574-BBB525ACCB28}.Release|Any CPU.Build.0 = Release|Any CPU
{CEB2FAE6-4260-4DC9-8557-AAD982B41365}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CEB2FAE6-4260-4DC9-8557-AAD982B41365}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CEB2FAE6-4260-4DC9-8557-AAD982B41365}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CEB2FAE6-4260-4DC9-8557-AAD982B41365}.Release|Any CPU.Build.0 = Release|Any CPU
{ECD961B6-88D7-467E-AEAA-7530835C7551}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ECD961B6-88D7-467E-AEAA-7530835C7551}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ECD961B6-88D7-467E-AEAA-7530835C7551}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ECD961B6-88D7-467E-AEAA-7530835C7551}.Release|Any CPU.Build.0 = Release|Any CPU
{E9E4500B-FE22-482C-AA70-FECDFB298891}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E9E4500B-FE22-482C-AA70-FECDFB298891}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E9E4500B-FE22-482C-AA70-FECDFB298891}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E9E4500B-FE22-482C-AA70-FECDFB298891}.Release|Any CPU.Build.0 = Release|Any CPU
{E546DC7E-E4F1-430A-8B4C-F40D1FAF3CF0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E546DC7E-E4F1-430A-8B4C-F40D1FAF3CF0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E546DC7E-E4F1-430A-8B4C-F40D1FAF3CF0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E546DC7E-E4F1-430A-8B4C-F40D1FAF3CF0}.Release|Any CPU.Build.0 = Release|Any CPU
{4E6C9624-39E7-41B7-B40A-6C70190CE87A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4E6C9624-39E7-41B7-B40A-6C70190CE87A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4E6C9624-39E7-41B7-B40A-6C70190CE87A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4E6C9624-39E7-41B7-B40A-6C70190CE87A}.Release|Any CPU.Build.0 = Release|Any CPU
{388CDF50-75E6-40D7-B843-74FD853C4DCB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{388CDF50-75E6-40D7-B843-74FD853C4DCB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{388CDF50-75E6-40D7-B843-74FD853C4DCB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{388CDF50-75E6-40D7-B843-74FD853C4DCB}.Release|Any CPU.Build.0 = Release|Any CPU
{4A74F7F1-989F-4740-BE2E-B04D9B288946}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4A74F7F1-989F-4740-BE2E-B04D9B288946}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4A74F7F1-989F-4740-BE2E-B04D9B288946}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4A74F7F1-989F-4740-BE2E-B04D9B288946}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{38494BE5-9E87-47E3-8439-D828FBAB0C7A} = {9CFC5A2B-AE61-4840-9E1B-FC490EF4C99B}
{6D11A33E-644C-47FC-B0C5-4697B9AE598E} = {9CFC5A2B-AE61-4840-9E1B-FC490EF4C99B}
{A2864CB0-C745-4B59-8219-74AD403BC68F} = {9CFC5A2B-AE61-4840-9E1B-FC490EF4C99B}
{2AFA283F-345A-4E3D-BF60-FBD727B841BE} = {9CFC5A2B-AE61-4840-9E1B-FC490EF4C99B}
{286218DA-7A24-4EA1-9073-20B2E266511F} = {2AFA283F-345A-4E3D-BF60-FBD727B841BE}
{32E844CB-C1C5-4C44-9105-34A24EF76EE7} = {2AFA283F-345A-4E3D-BF60-FBD727B841BE}
{DB196600-333E-41F8-B441-3DF86F644551} = {65402BF3-B027-429E-9333-1473364928FF}
{573B378C-462D-4E00-91AB-F154E07763E8} = {DB196600-333E-41F8-B441-3DF86F644551}
{437B9B23-9D3D-45CF-A0C8-20506B6F8601} = {DB196600-333E-41F8-B441-3DF86F644551}
{7F9B6CF5-4BFA-429B-A0FC-C66C488F33E3} = {DB196600-333E-41F8-B441-3DF86F644551}
{B0120BE5-E934-4F25-ACDE-BE9570F8C8B0} = {DB196600-333E-41F8-B441-3DF86F644551}
{8F2D989B-D302-4DE4-8574-BBB525ACCB28} = {DB196600-333E-41F8-B441-3DF86F644551}
{8CE37D11-9221-4274-98C0-F63F8E4CB711} = {65402BF3-B027-429E-9333-1473364928FF}
{CEB2FAE6-4260-4DC9-8557-AAD982B41365} = {8CE37D11-9221-4274-98C0-F63F8E4CB711}
{ECD961B6-88D7-467E-AEAA-7530835C7551} = {8CE37D11-9221-4274-98C0-F63F8E4CB711}
{E9E4500B-FE22-482C-AA70-FECDFB298891} = {8CE37D11-9221-4274-98C0-F63F8E4CB711}
{E546DC7E-E4F1-430A-8B4C-F40D1FAF3CF0} = {8CE37D11-9221-4274-98C0-F63F8E4CB711}
{4E6C9624-39E7-41B7-B40A-6C70190CE87A} = {8CE37D11-9221-4274-98C0-F63F8E4CB711}
{388CDF50-75E6-40D7-B843-74FD853C4DCB} = {8CE37D11-9221-4274-98C0-F63F8E4CB711}
{4A74F7F1-989F-4740-BE2E-B04D9B288946} = {8CE37D11-9221-4274-98C0-F63F8E4CB711}
EndGlobalSection
EndGlobal

View File

@ -1,4 +1,3 @@
<<<<<<< HEAD
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="./eng/Version.props" />
@ -13,27 +12,35 @@
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)eng/opensource.snk</AssemblyOriginatorKeyFile>
<PublicKey>0024000004800000940000000602000000240000525341310004000001000100f1d038d0b85ae392ad72011df91e9343b0b5df1bb8080aa21b9424362d696919e0e9ac3a8bca24e283e10f7a569c6f443e1d4e3ebc84377c87ca5caa562e80f9932bf5ea91b7862b538e13b8ba91c7565cf0e8dfeccfea9c805ae3bda044170ecc7fc6f147aeeac422dd96aeb9eb1f5a5882aa650efe2958f2f8107d2038f2ab</PublicKey>
<CSNoWarn>CS1998;CS1591</CSNoWarn>
<NoWarn>$(NoWarn);$(CSNoWarn);NU5104</NoWarn>
<SKEXPNoWarn>SKEXP0001;SKEXP0010;SKEXP0020</SKEXPNoWarn>
<NoWarn>$(NoWarn);$(CSNoWarn);$(SKEXPNoWarn);NU5104</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>false</IsPackable>
<EnableNetAnalyzers>true</EnableNetAnalyzers>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<IsTestProject>false</IsTestProject>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
</PropertyGroup>
<PropertyGroup Condition="'$(IsTestProject)' == 'true'">
<NoWarn>$(NoWarn);CA1829</NoWarn>
</PropertyGroup>
<ItemGroup Condition="'$(IsTestProject)' == 'true'">
<PackageReference Include="ApprovalTests" Version="$(ApprovalTestVersion)" />
<PackageReference Include="FluentAssertions" Version="$(FluentAssertionVersion)" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNETTestSdkVersion)" />
<PackageReference Include="xunit" Version="$(XUnitVersion)" />
<PackageReference Include="xunit.runner.console" Version="$(XUnitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(XUnitVersion)" />
<PackageReference Include="Moq" Version="4.20.70" />
<PackageReference Include="ApprovalTests" />
<PackageReference Include="FluentAssertions" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.runner.console" />
<PackageReference Include="xunit.runner.visualstudio" />
<PackageReference Include="Moq" />
</ItemGroup>
<ItemGroup Condition="'$(IsTestProject)' == 'true'">
@ -49,36 +56,4 @@
<Link>resource/%(RecursiveDir)%(Filename)%(Extension)</Link>
</Content>
</ItemGroup>
=======
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- Capture PackageIconFullPath into DefaultDotnetIconFullPath before we overwrite PackageIconFullPath. -->
<!-- DefaultDotnetIconFullPath is only needed for the ServiceDisovery packages. The property can be removed when these libraries move. See https://github.com/dotnet/aspire/issues/170 -->
<DefaultDotnetIconFullPath>$(PackageIconFullPath)</DefaultDotnetIconFullPath>
<PackageIconFullPath>$(SharedDir)Aspire_icon_256.png</PackageIconFullPath>
<PackageProjectUrl>https://github.com/dotnet/aspire</PackageProjectUrl>
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<StrongNameKeyId>Open</StrongNameKeyId>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Set RunSettingsFilePath property which is read by VSTest. -->
<RunSettingsFilePath Condition="'$(RunSettingsFilePath)' == ''">$(RepositoryEngineeringDir).runsettings</RunSettingsFilePath>
<!-- Redirect test logs into a subfolder -->
<TestResultsLogDir>$([MSBuild]::NormalizeDirectory('$(ArtifactsLogDir)', 'TestLogs'))</TestResultsLogDir>
</PropertyGroup>
<PropertyGroup>
<NoWarn>$(NoWarn);CS1591;SKEXP0001;SKEXP0010;SKEXP0020</NoWarn>
</PropertyGroup>
>>>>>>> agnext_main
</Project>

View File

@ -12,7 +12,8 @@
<PackageVersion Include="Aspire.Hosting.Orleans" Version="8.2.0" />
<PackageVersion Include="Aspire.Hosting.Qdrant" Version="8.2.0" />
<PackageVersion Include="Aspire.Hosting.Redis" Version="8.2.0" />
<PackageVersion Include="Azure.AI.OpenAI" Version="1.0.0-beta.17" />
<PackageVersion Include="Azure.AI.OpenAI" Version=" 2.0.0-beta.3" />
<PackageVersion Include="Azure.AI.Inference" Version="1.0.0-beta.1" />
<PackageVersion Include="Azure.Data.Tables" Version="12.8.3" />
<PackageVersion Include="Azure.Identity" Version="1.12.0" />
<PackageVersion Include="Azure.ResourceManager.ContainerInstance" Version="1.2.1" />
@ -33,8 +34,10 @@
<PackageVersion Include="Grpc.Tools" Version="2.65.0" />
<PackageVersion Include="Grpc.Net.Client" Version="2.65.0" />
<PackageVersion Include="Google.Protobuf" Version="3.27.3" />
<PackageVersion Include="Microsoft.AspNetCore.App" Version="8.0.4" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="8.0.8" />
<PackageVersion Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Azure" Version="1.7.4" />
<PackageVersion Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0" />
@ -58,9 +61,12 @@
<PackageVersion Include="Microsoft.Orleans.Server" Version="8.2.0" />
<PackageVersion Include="Microsoft.Orleans.Streaming" Version="8.2.0" />
<PackageVersion Include="Microsoft.Orleans.Streaming.EventHubs" Version="8.2.0" />
<PackageVersion Include="Microsoft.SemanticKernel" Version="1.15.1" />
<PackageVersion Include="Microsoft.SemanticKernel.Connectors.Qdrant" Version="1.15.1-alpha" />
<PackageVersion Include="Microsoft.SemanticKernel.Plugins.Memory" Version="1.15.1-alpha" />
<PackageVersion Include="Microsoft.SemanticKernel" Version="1.18.1-rc" />
<PackageVersion Include="Microsoft.SemanticKernel.Agents.Core" Version="1.18.1-alpha" />
<PackageVersion Include="Microsoft.SemanticKernel.Connectors.AzureOpenAI" Version="1.18.1-rc" />
<PackageVersion Include="Microsoft.SemanticKernel.Connectors.Qdrant" Version="1.18.1-alpha" />
<PackageVersion Include="Microsoft.SemanticKernel.Plugins.Memory" Version="1.18.1-alpha" />
<PackageVersion Include="Microsoft.SemanticKernel.Plugins.Web" Version="1.18.1-alpha" />
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
<PackageVersion Include="Octokit" Version="13.0.1" />
<PackageVersion Include="Octokit.Webhooks.AspNetCore" Version="2.2.2" />
@ -74,5 +80,25 @@
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.6.2" />
<PackageVersion Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageVersion Include="System.IdentityModel.Tokens.Jwt" Version="7.6.3" />
<PackageVersion Include="System.Memory.Data" Version="8.0.0" />
<PackageVersion Include="JsonSchema.Net.Generation" Version="4.3.0.2" />
<PackageVersion Include="Microsoft.DotNet.Interactive" Version="1.0.0-beta.24229.4" />
<PackageVersion Include="Microsoft.DotNet.Interactive.Jupyter" Version="1.0.0-beta.24229.4" />
<PackageVersion Include="Microsoft.DotNet.Interactive.PackageManagement" Version="1.0.0-beta.24229.4" />
<PackageVersion Include="Google.Cloud.AIPlatform.V1" Version="3.0.0" />
<PackageVersion Include="OpenAI" Version="2.0.0-beta.10" />
<PackageVersion Include="System.CodeDom" Version="5.0.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.3.0" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
<PackageVersion Include="ApprovalTests" Version="6.0.0" />
<PackageVersion Include="FluentAssertions" Version="6.8.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
<PackageVersion Include="xunit" Version="2.4.2" />
<PackageVersion Include="xunit.runner.console" Version="2.4.2" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.4.2" />
<PackageVersion Include="Moq" Version="4.20.70" />
<PackageVersion Include="Microsoft.PowerShell.SDK" Version="7.4.4" />
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="8.0.4" />
</ItemGroup>
</Project>

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AzureOpenAIVersion>1.0.0-beta.17</AzureOpenAIVersion>
<AzureOpenAIV2Version>2.0.0-beta.3</AzureOpenAIV2Version>
<SemanticKernelVersion>1.18.1-rc</SemanticKernelVersion>
<SemanticKernelExperimentalVersion>1.18.1-alpha</SemanticKernelExperimentalVersion>
@ -13,11 +12,6 @@
<MicrosoftNETTestSdkVersion>17.7.0</MicrosoftNETTestSdkVersion>
<MicrosoftDotnetInteractive>1.0.0-beta.24229.4</MicrosoftDotnetInteractive>
<MicrosoftSourceLinkGitHubVersion>8.0.0</MicrosoftSourceLinkGitHubVersion>
<MicrosoftASPNETCoreVersion>8.0.4</MicrosoftASPNETCoreVersion>
<GoogleCloudAPIPlatformVersion>3.0.0</GoogleCloudAPIPlatformVersion>
<JsonSchemaVersion>4.3.0.2</JsonSchemaVersion>
<AzureAIInferenceVersion>1.0.0-beta.1</AzureAIInferenceVersion>
<OpenAISDKVersion>2.0.0-beta.10</OpenAISDKVersion>
<PowershellSDKVersion>7.4.4</PowershellSDKVersion>
</PropertyGroup>
</Project>

View File

@ -1,13 +1,6 @@
{
"sdk": {
<<<<<<< HEAD
"version": "8.0.104",
"rollForward": "latestMinor"
}
}
=======
"rollForward": "major",
"version": "8.0.302"
}
}
>>>>>>> agnext_main

View File

@ -39,7 +39,7 @@
<ItemGroup>
<!-- SourceLink allows step-through debugging for source hosted on GitHub. -->
<!-- https://github.com/dotnet/sourcelink -->
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" Version="$(MicrosoftSourceLinkGitHubVersion)" />
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>

View File

@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Anthropic_Agent_With_Prompt_Caching.cs
using AutoGen.Anthropic.DTO;
@ -128,6 +128,6 @@ public class Anthropic_Agent_With_Prompt_Caching
messageEnvelope,
};
var history = await groupChat.SendAsync(chatHistory).ToArrayAsync();
await groupChat.SendAsync(chatHistory).ToArrayAsync();
}
}

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
@ -13,7 +13,7 @@
<ProjectReference Include="..\..\src\AutoGen.DotnetInteractive\AutoGen.DotnetInteractive.csproj" />
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<ProjectReference Include="..\..\src\AutoGen\AutoGen.csproj" />
<PackageReference Include="FluentAssertions" Version="$(FluentAssertionVersion)" />
<PackageReference Include="FluentAssertions" />
</ItemGroup>
</Project>

View File

@ -1,11 +1,11 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Program.cs
namespace AutoGen.Anthropic.Samples;
internal static class Program
{
public static async Task Main(string[] args)
public static async Task Main(string[] _)
{
await Anthropic_Agent_With_Prompt_Caching.RunAsync();
}

View File

@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>$(TestTargetFrameworks)</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS8981;CS8600;CS8602;CS8604;CS8618;CS0219;SKEXP0054;SKEXP0050;SKEXP0110</NoWarn>
<NoWarn>$(NoWarn);CS8981;CS8600;CS8602;CS8604;CS8618;CS0219;SKEXP0054;SKEXP0050;SKEXP0110;IDE0059;IDE0200;IDE1006;CA1852;CA1854</NoWarn>
<IncludeResourceFolder>true</IncludeResourceFolder>
</PropertyGroup>
@ -13,7 +13,7 @@
<ProjectReference Include="..\..\src\AutoGen.DotnetInteractive\AutoGen.DotnetInteractive.csproj" />
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<ProjectReference Include="..\..\src\AutoGen\AutoGen.csproj" />
<PackageReference Include="FluentAssertions" Version="$(FluentAssertionVersion)" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Web" Version="$(SemanticKernelExperimentalVersion)" />
<PackageReference Include="FluentAssertions" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Web" />
</ItemGroup>
</Project>

View File

@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// CreateAnAgent.cs
using AutoGen;
@ -87,7 +87,7 @@ public partial class AssistantCodeSnippet
var response = await assistantAgent.SendAsync("hello");
response.Should().BeOfType<ToolCallMessage>();
var toolCallMessage = (ToolCallMessage)response;
toolCallMessage.ToolCalls.Count().Should().Be(1);
toolCallMessage.ToolCalls.Count.Should().Be(1);
toolCallMessage.ToolCalls.First().FunctionName.Should().Be("UpperCase");
#endregion code_snippet_4
}

View File

@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// FunctionCallCodeSnippet.cs
using AutoGen;
@ -38,13 +38,12 @@ public partial class FunctionCallCodeSnippet
var response = await assistantAgent.SendAsync("hello What's the weather in Seattle today? today is 2024-01-01");
response.Should().BeOfType<ToolCallMessage>();
var toolCallMessage = (ToolCallMessage)response;
toolCallMessage.ToolCalls.Count().Should().Be(1);
toolCallMessage.ToolCalls.Count.Should().Be(1);
toolCallMessage.ToolCalls[0].FunctionName.Should().Be("WeatherReport");
toolCallMessage.ToolCalls[0].FunctionArguments.Should().Be(@"{""location"":""Seattle"",""date"":""2024-01-01""}");
#endregion code_snippet_4
}
public async Task CodeSnippet6()
{
// get OpenAI Key and create config

View File

@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Example02_TwoAgent_MathChat.cs
using AutoGen.BasicSample;
@ -13,7 +13,6 @@ public static class Example02_TwoAgent_MathChat
#region code_snippet_1
var gpt4oMini = LLMConfiguration.GetOpenAIGPT4o_mini();
// create teacher agent
// teacher agent will create math questions
var teacher = new OpenAIChatAgent(

View File

@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs
using System.Text;
@ -87,7 +87,7 @@ public partial class Example07_Dynamic_GroupChat_Calculate_Fibonacci
defaultReply: "No code available.")
.RegisterMiddleware(async (msgs, option, agent, _) =>
{
if (msgs.Count() == 0 || msgs.All(msg => msg.From != "coder"))
if (msgs.Any() || msgs.All(msg => msg.From != "coder"))
{
return new TextMessage(Role.Assistant, "No code available. Coder please write code");
}
@ -156,7 +156,7 @@ public partial class Example07_Dynamic_GroupChat_Calculate_Fibonacci
var reply = await innerAgent.GenerateReplyAsync(msgs, option, ct);
while (maxRetry-- > 0)
{
if (reply.GetToolCalls() is var toolCalls && toolCalls.Count() == 1 && toolCalls[0].FunctionName == nameof(ReviewCodeBlock))
if (reply.GetToolCalls() is var toolCalls && toolCalls.Count == 1 && toolCalls[0].FunctionName == nameof(ReviewCodeBlock))
{
var toolCallResult = reply.GetContent();
var reviewResultObj = JsonSerializer.Deserialize<CodeReviewResult>(toolCallResult);

View File

@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Example10_SemanticKernel.cs
using System.ComponentModel;
@ -12,7 +12,7 @@ namespace AutoGen.BasicSample;
public class LightPlugin
{
public bool IsOn { get; set; } = false;
public bool IsOn { get; set; }
[KernelFunction]
[Description("Gets the state of the light.")]

View File

@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Example12_TwoAgent_Fill_Application.cs
using System.Text;
@ -10,11 +10,11 @@ namespace AutoGen.BasicSample;
public partial class TwoAgent_Fill_Application
{
private string? name = null;
private string? email = null;
private string? phone = null;
private string? address = null;
private bool? receiveUpdates = null;
private string? name;
private string? email;
private string? phone;
private string? address;
private bool? receiveUpdates;
[Function]
public async Task<string> SaveProgress(

View File

@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// FSM_Group_Chat.cs
using System.Text;
@ -15,11 +15,11 @@ namespace AutoGen.BasicSample;
#region FillFormTool
public partial class FillFormTool
{
private string? name = null;
private string? email = null;
private string? phone = null;
private string? address = null;
private bool? receiveUpdates = null;
private string? name;
private string? email;
private string? phone;
private string? address;
private bool? receiveUpdates;
[Function]
public async Task<string> SaveProgress(

View File

@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Use_Tools_With_Agent.cs
#region Using
@ -93,13 +93,13 @@ public class Use_Tools_With_Agent
#region verify_parallel_tool_call_reply
reply.Should().BeOfType<ToolCallAggregateMessage>();
(reply as ToolCallAggregateMessage)!.Message1.ToolCalls.Count().Should().Be(3);
(reply as ToolCallAggregateMessage)!.Message1.ToolCalls.Count.Should().Be(3);
#endregion verify_parallel_tool_call_reply
#region Multi_Turn_Parallel_Tool_Call
finalReply = await agent.SendAsync(chatHistory: [question, reply]);
finalReply.Should().BeOfType<ToolCallAggregateMessage>();
(finalReply as ToolCallAggregateMessage)!.Message1.ToolCalls.Count().Should().Be(3);
(finalReply as ToolCallAggregateMessage)!.Message1.ToolCalls.Count.Should().Be(3);
#endregion Multi_Turn_Parallel_Tool_Call
}

View File

@ -1,5 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Program.cs
// Copyright (c) Microsoft. All rights reserved.
//await Example07_Dynamic_GroupChat_Calculate_Fibonacci.RunAsync();
@ -24,7 +23,6 @@ allSamples.Add(new Tuple<string, Func<Task>>("Mistal Client Agent - Token Count"
allSamples.Add(new Tuple<string, Func<Task>>("GPT4v - Binary Data Image", async () => { await Example15_GPT4V_BinaryDataImageMessage.RunAsync(); }));
allSamples.Add(new Tuple<string, Func<Task>>("ReAct Agent", async () => { await Example17_ReActAgent.RunAsync(); }));
int idx = 1;
Dictionary<int, Tuple<string, Func<Task>>> map = new Dictionary<int, Tuple<string, Func<Task>>>();
Console.WriteLine("Available Examples:\n\n");
@ -54,6 +52,3 @@ while (true)
await map[val].Item2.Invoke();
}
}

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
@ -13,7 +13,7 @@
<ProjectReference Include="..\..\src\AutoGen\AutoGen.csproj" />
<ProjectReference Include="..\..\src\AutoGen.Gemini\AutoGen.Gemini.csproj" />
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<PackageReference Include="FluentAssertions" Version="$(FluentAssertionVersion)" />
<PackageReference Include="FluentAssertions" />
</ItemGroup>
</Project>

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>$(TestTargetFrameworks)</TargetFrameworks>
@ -13,7 +13,7 @@
<ProjectReference Include="..\..\src\AutoGen.Ollama\AutoGen.Ollama.csproj" />
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<ProjectReference Include="..\..\src\AutoGen\AutoGen.csproj" />
<PackageReference Include="FluentAssertions" Version="$(FluentAssertionVersion)" />
<PackageReference Include="FluentAssertions" />
</ItemGroup>
</Project>

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
@ -15,8 +15,8 @@
<ProjectReference Include="..\..\src\AutoGen.Ollama\AutoGen.Ollama.csproj" />
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<ProjectReference Include="..\..\src\AutoGen.OpenAI\AutoGen.OpenAI.csproj" />
<PackageReference Include="FluentAssertions" Version="$(FluentAssertionVersion)" />
<PackageReference Include="Azure.AI.OpenAI" Version="$(AzureOpenAIV2Version)" />
<PackageReference Include="FluentAssertions" />
<PackageReference Include="Azure.AI.OpenAI" />
</ItemGroup>
</Project>

View File

@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Structural_Output.cs
using System.Text.Json;
@ -61,7 +61,6 @@ public class Structural_Output
person.Hobbies.Count.Should().Be(2);
}
#region person_class
[Title("Person")]
public class Person

View File

@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Use_Json_Mode.cs
using System.Text.Json;
@ -50,7 +50,6 @@ public class Use_Json_Mode
person.Address.Should().BeNullOrEmpty();
}
#region person_class
public class Person
{

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
@ -12,7 +12,7 @@
<ProjectReference Include="..\..\src\AutoGen.OpenAI\AutoGen.OpenAI.csproj" />
<ProjectReference Include="..\..\src\AutoGen.SemanticKernel\AutoGen.SemanticKernel.csproj" />
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Web" Version="$(SemanticKernelExperimentalVersion)" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Web" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e265ac0f2dda1e5dfa65b1adf330722bb3ef7789115283604d8cd19f098f1f08
size 1148

View File

@ -4,6 +4,8 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!--orleans doesn't have strong name package-->
<NoWarn>$(NoWarn);CS8002</NoWarn>
</PropertyGroup>
<ItemGroup>

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a5c18db95ff3d7357cd9112e3e8698185d819c796a053b070782d019ff1437c9
size 309649

Some files were not shown because too many files have changed in this diff Show More