|
3 | 3 | <Description> |
4 | 4 | The official .NET library for the OpenAI service API. |
5 | 5 | </Description> |
6 | | - <AssemblyTitle>SDK Code Generation OpenAI</AssemblyTitle> |
| 6 | + <AssemblyTitle>OpenAI client library for .NET</AssemblyTitle> |
7 | 7 | <PackageTags>OpenAI;openai-dotnet;ChatGPT;Dall-E</PackageTags> |
8 | 8 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
9 | | - <Copyright>Copyright (c) 2024 OpenAI (https://openai.com)</Copyright> |
| 9 | + <Copyright>Copyright (c) 2025 OpenAI (https://openai.com)</Copyright> |
10 | 10 |
|
11 | 11 | <VersionPrefix>2.8.0</VersionPrefix> |
12 | 12 | <VersionSuffix></VersionSuffix> |
13 | 13 |
|
14 | | - <TargetFrameworks>net8.0;netstandard2.0</TargetFrameworks> |
| 14 | + <TargetFrameworks>net10.0;net8.0;netstandard2.0</TargetFrameworks> |
15 | 15 | <LangVersion>latest</LangVersion> |
16 | 16 |
|
17 | 17 | <!-- Generate an XML documentation file for the project. --> |
|
62 | 62 | <InternalsVisibleTo Include="Azure.AI.OpenAI" Condition="'$(Configuration)' == 'Unsigned'" /> |
63 | 63 | </ItemGroup> |
64 | 64 |
|
65 | | - <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
66 | | - <!-- Normalize stored file paths in symbols when in a CI build. --> |
67 | | - <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
68 | | - </PropertyGroup> |
69 | 65 | <ItemGroup> |
70 | 66 | <None Include="OpenAI.png" Pack="true" PackagePath="\" /> |
71 | 67 | <None Include="..\CHANGELOG.md" Pack="true" PackagePath="\" /> |
72 | 68 | <None Include="..\README.md" Pack="true" PackagePath="\" /> |
73 | 69 | </ItemGroup> |
74 | 70 |
|
75 | 71 | <ItemGroup> |
76 | | - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
77 | 72 | <PackageReference Include="System.ClientModel" Version="1.8.1" /> |
78 | | - <PackageReference Include="System.Net.ServerSentEvents" Version="9.0.9" /> |
| 73 | + <PackageReference Include="System.Net.ServerSentEvents" Version="10.0.0" /> |
| 74 | + </ItemGroup> |
| 75 | + |
| 76 | + <ItemGroup Condition="!$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))"> |
| 77 | + <PackageReference Include="System.Diagnostics.DiagnosticSource" Version="10.0.0" /> |
79 | 78 | </ItemGroup> |
80 | 79 |
|
81 | | - <ItemGroup Condition="!$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))"> |
82 | | - <PackageReference Include="System.Diagnostics.DiagnosticSource" Version="8.0.1" /> |
| 80 | + <!-- Build-only dependencies --> |
| 81 | + <ItemGroup> |
| 82 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
83 | 83 | </ItemGroup> |
| 84 | + |
| 85 | + <!-- Build and release configuration --> |
| 86 | + <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
| 87 | + <!-- Normalize stored file paths in symbols when in a CI build. --> |
| 88 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 89 | + </PropertyGroup> |
84 | 90 | </Project> |
0 commit comments