-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShining BeautifulGirls.csproj
More file actions
123 lines (119 loc) · 5.11 KB
/
Copy pathShining BeautifulGirls.csproj
File metadata and controls
123 lines (119 loc) · 5.11 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
113
114
115
116
117
118
119
120
121
122
123
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<RootNamespace>Shining_BeautifulGirls</RootNamespace>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<LangVersion>preview</LangVersion>
<BaseIntermediateOutputPath />
<PlatformTarget>x64</PlatformTarget>
<ApplicationIcon>resources\logo\icon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="original\**" />
<EmbeddedResource Remove="original\**" />
<None Remove="original\**" />
<Page Remove="original\**" />
</ItemGroup>
<ItemGroup>
<Content Include="resources\logo\icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ML" Version="3.0.1" />
<PackageReference Include="Microsoft.ML.FastTree" Version="3.0.1" />
<PackageReference Include="Microsoft.ML.ImageAnalytics" Version="3.0.1" />
<PackageReference Include="Microsoft.ML.TorchSharp" Version="0.21.1" />
<PackageReference Include="Microsoft.ML.Vision" Version="3.0.1" />
<PackageReference Include="OpenCvSharp4" Version="4.8.0.20230708" />
<PackageReference Include="OpenCvSharp4.Extensions" Version="4.8.0.20230708" />
<PackageReference Include="OpenCvSharp4.runtime.win" Version="4.8.0.20230708" />
<PackageReference Include="OpenCvSharp4.Windows" Version="4.8.0.20230708" />
<PackageReference Include="OpenCvSharp4.WpfExtensions" Version="4.8.0.20230708" />
<PackageReference Include="PaddleOCRSharp" Version="4.1.0" />
<PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.3.1" />
<PackageReference Include="TorchSharp-cpu" Version="0.101.5" />
</ItemGroup>
<ItemGroup>
<None Update="adb\adb.exe">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="HeadDetection.zip">
<DependentUpon>HeadDetection.mbconfig</DependentUpon>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="src\Symbol.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>Symbol.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup Label="HeadDetection">
<None Include="HeadDetection.consumption.cs">
<DependentUpon>HeadDetection.mbconfig</DependentUpon>
</None>
<None Include="HeadDetection.training.cs">
<DependentUpon>HeadDetection.mbconfig</DependentUpon>
</None>
<None Include="HeadDetection.zip">
<DependentUpon>HeadDetection.mbconfig</DependentUpon>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup Label="MoodClassification">
<None Include="MoodClassification.consumption.cs">
<DependentUpon>MoodClassification.mbconfig</DependentUpon>
</None>
<None Include="MoodClassification.training.cs">
<DependentUpon>MoodClassification.mbconfig</DependentUpon>
</None>
<None Include="MoodClassification.zip">
<DependentUpon>MoodClassification.mbconfig</DependentUpon>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="src\Symbol.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Symbol.tt</DependentUpon>
</None>
</ItemGroup>
<ItemGroup Label="RankClassification">
<None Include="RankClassification.mlnet">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
<ItemGroup>
<Compile Update="src\Symbol.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Symbol.tt</DependentUpon>
</Compile>
<Compile Update="src\TextTemplate1.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>TextTemplate1.tt</DependentUpon>
</Compile>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy "$(ProjectDir)resources" "$(TargetDir)resources" /E /I /Y" />
</Target>
<Target Name="CleanUnusedFiles" BeforeTargets="BeforeBuild">
<ItemGroup>
<FilesToDelete Include="$(TargetDir)*.*" />
</ItemGroup>
<!-- Delete the specified files -->
<Delete Files="@(FilesToDelete)" />
</Target>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="FOR /D %25%25i IN ("$(TargetDir)*") DO (
 IF /I NOT "%25%25~nxi"=="养成记录" (
 IF /I NOT "%25%25~nxi"=="screenshot" (
 IF /I NOT "%25%25~nxi"=="userdata" (
 rmdir /s /q "%25%25i"
 )
 )
 )
)" />
</Target>
</Project>