15 lines
431 B
XML
15 lines
431 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
<Exec Command=" set dir="$(SolutionDir)Web\ThingsGateway.Web.Entry\bin\$(Configuration)\$(TargetFramework)\Plugins\$(AssemblyName)"
 if not exist %25dir%25 md %25dir%25 
copy "$(TargetDir)*QuestDB*.dll" %25dir%25



" />
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|