-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVRCSTT.csproj
56 lines (54 loc) · 2.03 KB
/
VRCSTT.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
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="Current">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishReadyToRun>true</PublishReadyToRun>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<FileUpgradeFlags>40</FileUpgradeFlags>
<UpgradeBackupLocation>S:\VS\STT\VRCSTT\Backup\</UpgradeBackupLocation>
<OldToolsVersion>2.0</OldToolsVersion>
<DebugType>embedded</DebugType>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<AssemblyVersion>37.0.0</AssemblyVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="AssemblyInfo.cs~RF1c001da8.TMP" />
</ItemGroup>
<ItemGroup>
<Content Include="favicon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Autoupdater.NET.Official" Version="1.8.4" />
<PackageReference Include="EasyNetQ" Version="7.2.0" />
<PackageReference Include="Microsoft.CognitiveServices.Speech" Version="1.23.0" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.39" />
<PackageReference Include="NAudio" Version="2.1.0" />
<PackageReference Include="OscCore" Version="1.0.5" />
</ItemGroup>
<ItemGroup>
<Compile Update="Views\HomeView.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="App.config">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Helper\KanaConverter\Diphthongs.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Helper\KanaConverter\RomajiKana.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Page Update="Views\HomeView.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>