Skip to content

Commit 79665a6

Browse files
authored
Merge branch 'main' into feat-semantickernel-library
2 parents 954600a + c0c57ff commit 79665a6

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

src/a2a-net.Client.Asbtractions/a2a-net.Client.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<RootNamespace>A2A.Client</RootNamespace>
7+
<RootNamespace>A2A.Client</RootNamespace>
88
<VersionPrefix>0.10.0</VersionPrefix>
99
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
1010
<FileVersion>$(VersionPrefix)</FileVersion>

src/a2a-net.Client.Http/a2a-net.Client.Http.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<RootNamespace>A2A.Client</RootNamespace>
7+
<RootNamespace>A2A.Client</RootNamespace>
88
<VersionPrefix>0.10.0</VersionPrefix>
99
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
1010
<FileVersion>$(VersionPrefix)</FileVersion>

src/a2a-net.Client.WebSocket/a2a-net.Client.WebSocket.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<RootNamespace>A2A.Client.WebSocket</RootNamespace>
7+
<RootNamespace>A2A.Client.WebSocket</RootNamespace>
88
<VersionPrefix>0.10.0</VersionPrefix>
99
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
1010
<FileVersion>$(VersionPrefix)</FileVersion>

src/a2a-net.Client/a2a-net.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<RootNamespace>A2A.Client</RootNamespace>
7+
<RootNamespace>A2A.Client</RootNamespace>
88
<VersionPrefix>0.10.0</VersionPrefix>
99
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
1010
<FileVersion>$(VersionPrefix)</FileVersion>

src/a2a-net.Core/A2AProtocol.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ public static class Methods
3131
public static class Messages
3232
{
3333

34-
const string Prefix = "messages/";
34+
const string Prefix = "message/";
3535

3636
/// <summary>
37-
/// The name of the method for sending a message to an agent ("messages/send").
37+
/// The name of the method for sending a message to an agent ("message/send").
3838
/// </summary>
3939
public const string Send = Prefix + "send";
4040
/// <summary>
41-
/// The name of the method for streaming messages to an agent ("messages/stream").
41+
/// The name of the method for streaming messages to an agent ("message/stream").
4242
/// </summary>
4343
public const string Stream = Prefix + "stream";
4444
}

src/a2a-net.Core/a2a-net.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<RootNamespace>A2A</RootNamespace>
7+
<RootNamespace>A2A</RootNamespace>
88
<VersionPrefix>0.10.0</VersionPrefix>
99
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
1010
<FileVersion>$(VersionPrefix)</FileVersion>

src/a2a-net.Server.AspNetCore/a2a-net.Server.AspNetCore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<OutputType>Library</OutputType>
8-
<RootNamespace>A2A.Server.AspNetCore</RootNamespace>
7+
<OutputType>Library</OutputType>
8+
<RootNamespace>A2A.Server.AspNetCore</RootNamespace>
99
<VersionPrefix>0.10.0</VersionPrefix>
1010
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
1111
<FileVersion>$(VersionPrefix)</FileVersion>

src/a2a-net.Server.Infrastructure.Abstractions/a2a-net.Server.Infrastructure.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<RootNamespace>A2A.Server.Infrastructure</RootNamespace>
7+
<RootNamespace>A2A.Server.Infrastructure</RootNamespace>
88
<VersionPrefix>0.10.0</VersionPrefix>
99
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
1010
<FileVersion>$(VersionPrefix)</FileVersion>

src/a2a-net.Server.Infrastructure.DistributedCache/a2a-net.Server.Infrastructure.DistributedCache.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<RootNamespace>A2A.Server.Infrastructure.DistributedCache</RootNamespace>
7+
<RootNamespace>A2A.Server.Infrastructure.DistributedCache</RootNamespace>
88
<VersionPrefix>0.10.0</VersionPrefix>
99
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
1010
<FileVersion>$(VersionPrefix)</FileVersion>

src/a2a-net.Server/a2a-net.Server.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<RootNamespace>A2A.Server</RootNamespace>
7+
<RootNamespace>A2A.Server</RootNamespace>
88
<VersionPrefix>0.10.0</VersionPrefix>
99
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
1010
<FileVersion>$(VersionPrefix)</FileVersion>

0 commit comments

Comments
 (0)