-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathOpenAI.CLI.csproj
More file actions
25 lines (20 loc) · 718 Bytes
/
OpenAI.CLI.csproj
File metadata and controls
25 lines (20 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<NoWarn>$(NoWarn)</NoWarn>
</PropertyGroup>
<PropertyGroup Label="NuGet">
<PackageId>tryAGI.OpenAI.CLI</PackageId>
<PackAsTool>true</PackAsTool>
<ToolCommandName>openai</ToolCommandName>
<Description>Advanced Voice from command line</Description>
<PackageTags>openai;advanced-voice;ai;realtime;api;microphone</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OpenAI\OpenAI.csproj" />
</ItemGroup>
</Project>