-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathOrcaDemo.csproj
26 lines (23 loc) · 1.17 KB
/
OrcaDemo.csproj
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
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Configurations>FileDemo.Debug;FileDemo.Release;StreamingDemo.Debug;StreamingDemo.Release</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'FileDemo.Debug' Or '$(Configuration)' == 'FileDemo.Release'">
<StartupObject>OrcaDemo.FileDemo</StartupObject>
<TargetName>OrcaFileDemo</TargetName>
<AssemblyName>OrcaFileDemo</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'StreamingDemo.Debug' Or '$(Configuration)' == 'StreamingDemo.Release'">
<StartupObject>OrcaDemo.StreamingDemo</StartupObject>
<TargetName>OrcaStreamingDemo</TargetName>
<AssemblyName>OrcaStreamingDemo</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Picovoice.Orca" Version="1.1.3" />
<PackageReference Include="PvSpeaker" Version="1.0.2" />
<PackageReference Include="Spectre.Console" Version="0.49.1" />
<PackageReference Include="Tiktoken" Version="2.2.0" />
</ItemGroup>
</Project>