HHECS.DAQWebClient.csproj
1.4 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Areas\**" />
<Content Remove="Areas\**" />
<EmbeddedResource Remove="Areas\**" />
<None Remove="Areas\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FreeSql.Provider.Sqlite" Version="3.5.207" />
<PackageReference Include="FreeSql.Repository" Version="3.5.207" />
<PackageReference Include="HHECS.BllModel" Version="2.1.0" />
<PackageReference Include="HslCommunication" Version="[7.0.1]" />
<PackageReference Include="LinqKit" Version="1.3.8" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.7" />
<PackageReference Include="MQTTnet" Version="5.0.1.1416" />
<PackageReference Include="NLog.Web.AspNetCore" Version="5.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.4" />
</ItemGroup>
<ItemGroup>
<Content Update="NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Update="hhecs.daq.db">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Import Project="..\HHECS.DAQShared\HHECS.DAQShared.projitems" Label="Shared" />
</Project>