openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.10.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

examples/aspnet-core/aspnet-core.csproj

15lines · modecode

1<Project Sdk="Microsoft.NET.Sdk.Web">
2
3 <PropertyGroup>
4 <TargetFramework>net8.0</TargetFramework>
5 <Nullable>enable</Nullable>
6 <ImplicitUsings>enable</ImplicitUsings>
7 <RootNamespace>ASP.NET_Core</RootNamespace>
8 </PropertyGroup>
9
10 <ItemGroup>
11 <PackageReference Include="OpenAI" Version="2.2.0" />
12 <PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
13 </ItemGroup>
14
15</Project>
16