HHECS.DAQClient.csproj
2.25 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationIcon>favicon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="favicon.ico" />
<None Remove="NLog.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="FreeSql.Provider.Sqlite" Version="3.5.103" />
<PackageReference Include="FreeSql.Provider.SqlServer" Version="3.5.103" />
<PackageReference Include="FreeSql.Repository" Version="3.5.103" />
<PackageReference Include="HandyControl" Version="3.5.1" />
<PackageReference Include="HHECS.BllModel" Version="2.1.0" />
<PackageReference Include="HslCommunication" Version="[7.0.1]" />
<PackageReference Include="LinqKit" Version="1.3.7" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
<PackageReference Include="NLog" Version="5.3.4" />
<PackageReference Include="NLog.Schema" Version="5.3.4" />
</ItemGroup>
<ItemGroup>
<Resource Include="favicon.ico">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Content Include="NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Update="DB\hhecs.fuleixi.daq.db">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="DB\hhecs.jiangmentuopusi.daq.db">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="DB\hhecs.kangshu.daq.db">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="DB\hhecs.loudihongwang.daq.db">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="DB\hhecs.xuzhou.daq.db">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="DB\hhecs.kunshan.daq.db">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="DB\hhecs.daq.db">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
<Import Project="..\HHECS.DAQShared\HHECS.DAQShared.projitems" Label="Shared" />
</Project>