forked from VRCWizard/TTS-Voice-Wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MoonbaseVoices.csproj
43 lines (35 loc) · 1.31 KB
/
MoonbaseVoices.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
41
42
43
<Project Sdk="Microsoft.NET.Sdk.Web">
<Import Project="$(SolutionDir)common.props" />
<PropertyGroup>
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PlatformTarget>x86</PlatformTarget>
<Platforms>AnyCPU;x86;x64</Platforms>
<BaseOutputPath></BaseOutputPath>
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
</ItemGroup>
<ItemGroup>
<Reference Include="SharpTalk">
<HintPath>SharpTalk.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="FonixTalk.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="ftalk_us.dic">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="ftalk_us.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="SharpTalk.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>