openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
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 | |