Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add NET 8.0 to TargetFrameworks of OAI and AOAI #344

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .dotnet.azure/eng/Directory.Build.Common.props
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<Choose>
<When Condition="'$(IsClientLibrary)' == 'true'">
<PropertyGroup>
<RequiredTargetFrameworks>netstandard2.0</RequiredTargetFrameworks>
<RequiredTargetFrameworks>net8.0;netstandard2.0</RequiredTargetFrameworks>
<WarningsNotAsErrors>$(WarningsNotAsErrors);NU1901;NU1902;NU1903;NU1904</WarningsNotAsErrors>
<CodeAnalysisRuleSet>$(RepoEngPath)\CodeAnalysis.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion .dotnet/src/OpenAI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<VersionPrefix>2.1.0</VersionPrefix>
<VersionSuffix></VersionSuffix>

<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net6.0;netstandard2.0</TargetFrameworks>
<LangVersion>latest</LangVersion>

<!-- Generate an XML documentation file for the project. -->
Expand Down
Loading