-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSongToTalkVoiSona.csproj
89 lines (89 loc) · 4.64 KB
/
SongToTalkVoiSona.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<EnableNETAnalyzers Condition="'$(Configuration)' == 'Debug'">true</EnableNETAnalyzers>
<AnalysisLevel>8.0-All</AnalysisLevel>
<PublishSingleFile>true</PublishSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>partial</TrimMode>
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
<TrimmerRemoveSymbols>true</TrimmerRemoveSymbols>
<DebuggerSupport>false</DebuggerSupport>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<DebugSymbols Condition="'$(Configuration)' == 'Release'">false</DebugSymbols>
<DebugType Condition="'$(Configuration)' == 'Release'">embedded</DebugType>
<DebugType Condition="'$(Configuration)' == 'Debug'">embedded</DebugType>
<!-- MinVer -->
<MinVerTagPrefix>v</MinVerTagPrefix>
<MinVerMinimumMajorMinor>0.1</MinVerMinimumMajorMinor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<Deterministic>true</Deterministic>
<DeterministicSourceRoot>/_/</DeterministicSourceRoot>
<RepoRoot>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\..\'))</RepoRoot>
<PathMap>$(RepoRoot)=$(DeterministicSourceRoot)</PathMap>
</PropertyGroup>
<Target Name="RemovePublishDirBeforeBuild" BeforeTargets="BeforeBuild">
<RemoveDir Directories="$(OutputPath)/publish/" />
<Message Text="RemovePublishDirBeforeBuild" Importance="high" />
</Target>
<Target Name="MakeZipPackage" AfterTargets="Publish">
<MakeDir Directories="$(OutputPath)/../../../../../SongToTalkVoiSona/publish/" />
<Delete Files="$(OutputPath)/LibSasara.xml" />
<Delete Files="$(OutputPath)/LibSasara.VoiSona.xml" />
<Delete Files="$(OutputPath)/$(AssemblyName).pdb" />
<Delete Files="$(OutputPath)/publish/$(AssemblyName).pdb" />
<Delete Files="$(OutputPath)/publish/*.xml" />
<Delete Files="$(OutputPath)/publish/LibSasara.xml" />
<Delete Files="$(OutputPath)/publish/LibSasara.VoiSona.xml" />
<ZipDirectory SourceDirectory="$(OutputPath)/publish/" DestinationFile="$(OutputPath)/../../../../../SongToTalkVoiSona/publish/$(AssemblyName)-$(RuntimeIdentifier)-v.$(Version).zip" Overwrite="true" />
<Message Text="Actions After Publish" Importance="high" />
</Target>
<ItemGroup>
<ProjectReference Include="..\..\..\LibSasara\LibSasara.csproj" />
<ProjectReference Include="..\..\..\LibSasara.VoiSona\LibSasara.VoiSona.csproj" />
</ItemGroup>
<ItemGroup>
<!-- include files -->
<Content Include="./README.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="./EasySongToTalkVoiSona.bat">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="./lib/open_jtalk_dic_utf_8-1.11/*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="./lib/data.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="./file/kaeru.ccs">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="./file/template.tstprj">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<PackageReference Include="ConsoleAppFramework" Version="4.2.4" />
<PackageReference Include="MinVer" Version="4.3.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="PolySharp" Version="1.14.1+a7a92a9ddd050275c91c42b711d22cb41c3fbf3d">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="SharpOpenJTalk.Lang" Version="1.4.0" />
<PackageReference Include="WanaKana-net" Version="1.0.0" />
</ItemGroup>
</Project>