mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-11-04 01:23:58 +08:00
24 lines
884 B
XML
24 lines
884 B
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<!--<GenerateDocumentationFile>True</GenerateDocumentationFile>-->
|
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
|
</PropertyGroup>
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
<Exec Command=" set dir="$(SolutionDir)ThingsGateway.Web.Entry\bin\$(Configuration)\$(TargetFramework)\Plugins\$(AssemblyName)"
 if not exist %25dir%25 md %25dir%25 
copy "$(TargetDir)*Modbus*.dll" %25dir%25


" />
|
|
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\ThingsGateway.Blazor\ThingsGateway.Blazor.csproj" >
|
|
<IncludeAssets>Compile</IncludeAssets>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Foundataion\ThingsGateway.Foundation.Adapter.Modbus\ThingsGateway.Foundation.Adapter.Modbus.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|