-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWindowUI.csproj
More file actions
107 lines (96 loc) · 3.82 KB
/
WindowUI.csproj
File metadata and controls
107 lines (96 loc) · 3.82 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<SignAssembly>False</SignAssembly>
<UseWindowsForms>False</UseWindowsForms>
<LangVersion>default</LangVersion>
<Authors>TiO2 EvoLve</Authors>
<UserSecretsId>83b02913-18c0-4d30-81ed-1b5c23238911</UserSecretsId>
<TargetFramework>net10.0-windows</TargetFramework>
<PackageIcon>icon\logo.jpg</PackageIcon>
<ApplicationIcon>logo.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>True</Optimize>
<IsPublishable>True</IsPublishable>
<Prefer32bit>false</Prefer32bit>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Optimize>True</Optimize>
<IsPublishable>True</IsPublishable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="photo\**"/>
<EmbeddedResource Remove="photo\**"/>
<None Remove="photo\**"/>
<Page Remove="photo\**"/>
<None Update="temple\淄博血站.mdb">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Config\config.toml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Config\新开普.toml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="temple\淮南公交.mdb">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="temple\凯里.mdb">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Remove="icon\csv.png"/>
<None Remove="icon\file.png"/>
<None Remove="icon\ini.png"/>
<None Remove="icon\pdi.png"/>
<None Remove="icon\save.png"/>
<None Remove="icon\snd.png"/>
<None Remove="icon\sndevts.png"/>
</ItemGroup>
<ItemGroup>
<Resource Include="icon\csv.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="icon\ini.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="icon\save.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<None Remove="temple\kahao.mdb"/>
<Resource Include="temple\kahao.mdb"/>
<None Remove="icon\logo.jpg"/>
<Resource Include="icon\logo.jpg"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="EPPlus" Version="8.3.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="System.Data.OleDb" Version="10.0.1" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="10.0.1" />
<PackageReference Include="Tommy" Version="3.1.2"/>
<PackageReference Include="WPF-UI" Version="4.1.0" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="temple\"/>
</ItemGroup>
</Project>