-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSystemTools.csproj
More file actions
112 lines (104 loc) · 4.52 KB
/
Copy pathSystemTools.csproj
File metadata and controls
112 lines (104 loc) · 4.52 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows10.0.19041.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<UseWindowsForms>true</UseWindowsForms>
<Platforms>x64</Platforms>
</PropertyGroup>
<ItemGroup>
<None Include=".github\workflows\dotnet-build.yml" />
<None Remove="VoskWorker\**" />
<None Remove="cipx\**" />
<None Remove="ThirdParty\LiquidGlassAvaloniaUI\Assets\Shaders\*.sksl" />
<AvaloniaResource Include="Themes\CardTypeComponent\Theme.axaml.txt" />
<AvaloniaResource Include="ThirdParty\LiquidGlassAvaloniaUI\Assets\Shaders\*.sksl" />
<None Remove="Themes\VerticalSidebar\Theme.axaml.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ClassIsland.PluginSdk" Version="2.1.1.1" />
<PackageReference Include="DlibDotNet" Version="19.21.0.20220724" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.10" />
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.298">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="OpenCvSharp4" Version="4.9.0.20240103" />
<PackageReference Include="OpenCvSharp4.Extensions" Version="4.5.3.20211225" />
<PackageReference Include="OpenCvSharp4.runtime.win" Version="4.9.0.20240103" />
<PackageReference Include="System.Management" Version="8.0.0" />
<PackageReference Include="System.Speech" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="VoskWorker\**\*.cs" />
<Compile Remove="VoskWorker\**" />
<Compile Remove="cipx\**" />
</ItemGroup>
<Target Name="CopyVoskWorkerToPluginOutput" AfterTargets="Build">
<ItemGroup>
<VoskWorkerFiles Include="$(MSBuildProjectDirectory)\VoskWorker\bin\$(Configuration)\net10.0\win-x64\**\*" />
</ItemGroup>
<RemoveDir Directories="$(OutDir)VoskWorker" />
<Copy SourceFiles="@(VoskWorkerFiles)" DestinationFiles="@(VoskWorkerFiles->'$(OutDir)VoskWorker\%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="true" />
<ItemGroup>
<FileWrites Include="@(VoskWorkerFiles->'$(OutDir)VoskWorker\%(RecursiveDir)%(Filename)%(Extension)')" />
</ItemGroup>
</Target>
<ItemGroup>
<None Update="manifest.yml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="version.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="README-1.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="README.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="README-2.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="icon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="title.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="black.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="jinyongshubiao.bat">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="jinyongshubiao.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="huifu.bat">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="huifu.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Lyricify Lite - README.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<AvaloniaXaml Remove="VoskWorker\**" />
<AvaloniaXaml Remove="cipx\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="VoskWorker\**" />
<EmbeddedResource Remove="cipx\**" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Remove="VoskWorker\**" />
<AdditionalFiles Remove="cipx\**" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Remove="VoskWorker\**" />
<AvaloniaResource Remove="cipx\**" />
</ItemGroup>
</Project>