Skip to content

Commit 3263103

Browse files
authored
Mark public APIs as experimental and make versioning follow (#6812)
1 parent 894edb4 commit 3263103

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

src/Platform/Microsoft.Testing.Extensions.AzureFoundry/Microsoft.Testing.Extensions.AzureFoundry.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;$(SupportedNetFrameworks)</TargetFrameworks>
55
<IsShipping>false</IsShipping>
6+
<VersionPrefix>1.0.0</VersionPrefix>
7+
<PreReleaseVersionLabel>alpha</PreReleaseVersionLabel>
8+
<SuppressFinalPackageVersion>true</SuppressFinalPackageVersion>
69
</PropertyGroup>
710

811
<!-- NuGet package layout -->
@@ -23,6 +26,7 @@
2326
<ItemGroup>
2427
<PackageReference Include="Azure.AI.OpenAI" />
2528
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" />
29+
<PackageReference Include="Polyfill" PrivateAssets="all" />
2630
</ItemGroup>
2731

2832
<ItemGroup>

src/Platform/Microsoft.Testing.Extensions.AzureFoundry/TestApplicationBuilderExtensions.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
using Microsoft.Testing.Platform.AI;
@@ -11,6 +11,7 @@ namespace Microsoft.Testing.Extensions.AzureFoundry;
1111
/// <summary>
1212
/// Extension methods for configuring Azure Foundry services.
1313
/// </summary>
14+
[Experimental("TPEXP", UrlFormat = "https://aka.ms/testingplatform/diagnostics#{0}")]
1415
public static class TestApplicationBuilderExtensions
1516
{
1617
/// <summary>

src/Platform/Microsoft.Testing.Platform.AI/ChatClientProviderExtensions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ namespace Microsoft.Testing.Platform.AI;
1111
/// <summary>
1212
/// Extension methods for chat client provider.
1313
/// </summary>
14+
[Experimental("TPEXP", UrlFormat = "https://aka.ms/testingplatform/diagnostics#{0}")]
1415
public static class ChatClientProviderExtensions
1516
{
1617
/// <summary>

src/Platform/Microsoft.Testing.Platform.AI/Microsoft.Testing.Platform.AI.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
<PropertyGroup>
44
<TargetFrameworks>$(SupportedNetFrameworks);netstandard2.0</TargetFrameworks>
55
<IsShipping>false</IsShipping>
6+
<VersionPrefix>1.0.0</VersionPrefix>
7+
<PreReleaseVersionLabel>alpha</PreReleaseVersionLabel>
8+
<SuppressFinalPackageVersion>true</SuppressFinalPackageVersion>
69
</PropertyGroup>
710

811
<ItemGroup>

0 commit comments

Comments
 (0)