-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextToSpeechListener.csproj
31 lines (26 loc) · 1.03 KB
/
TextToSpeechListener.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageIcon>Funkyfranky_Coat_Of_Arms_80.png</PackageIcon>
<ApplicationIcon>Funkyfranky_Coat_Of_Arms_100dpi.ico</ApplicationIcon>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="Funkyfranky_Coat_Of_Arms_100dpi.ico" />
</ItemGroup>
<ItemGroup>
<None Include="C:\Users\frank\Pictures\Coat of Arms\Funkyfranky_Coat_Of_Arms_80.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Google.Cloud.TextToSpeech.V1Beta1" Version="2.0.0-beta03" />
<PackageReference Include="System.Speech" Version="8.0.0-preview.3.23174.8" />
<PackageReference Include="System.Windows.Extensions" Version="8.0.0-preview.3.23174.8" />
</ItemGroup>
</Project>