mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-11-02 16:43:59 +08:00
30 lines
928 B
XML
30 lines
928 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="$(SolutionDir)Foundation.props" />
|
|
<Import Project="$(SolutionDir)PackNuget.props" />
|
|
<Import Project="$(SolutionDir)Version.props" />
|
|
|
|
<PropertyGroup>
|
|
<Description>工业设备通讯协议-基础类库</Description>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="9.0.5" />
|
|
<PackageReference Include="TouchSocket" Version="3.1.5" />
|
|
<PackageReference Include="TouchSocket.SerialPorts" Version="3.1.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="Locales\*.json" />
|
|
<EmbeddedResource Include="Locales\*.json">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Admin\ThingsGateway.NewLife.X\ThingsGateway.NewLife.X.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|