-
Notifications
You must be signed in to change notification settings - Fork 0
/
UncleJupiter.csproj
40 lines (33 loc) · 1.16 KB
/
UncleJupiter.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>disable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="external\**" />
<Content Remove="external\**" />
<None Remove="external\**" />
<EmbeddedResource Remove="external\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Content\computerbeep_29.mp3" />
<None Remove="Content\computerbeep_41.mp3" />
<None Remove="Content\computerbeep_58.mp3" />
<None Remove="Settings\*" />
</ItemGroup>
<ItemGroup>
<Content Include="Settings\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Betalgo.OpenAI" Version="7.0.0" />
<PackageReference Include="Google.Cloud.Speech.V1" Version="3.4.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
<PackageReference Include="NAudio" Version="2.1.0" />
<PackageReference Include="Vosk" Version="0.3.38" />
</ItemGroup>
</Project>