DeviceDiscovery.csproj 681 B

1234567891011121314151617
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <ImportDirectoryBuildTargets>false</ImportDirectoryBuildTargets>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\..\EventBroker\EventBroker\EventBroker.csproj" />
  10. <ProjectReference Include="..\IDeviceDiscovery\IDeviceDiscovery.csproj" />
  11. </ItemGroup>
  12. <Target Name="PostBuild" AfterTargets="PostBuildEvent">
  13. <Exec Command="xcopy /Y /E &quot;$(TargetDir)&quot; &quot;$(SolutionDir)Service\ShakerService\$(OutDir)Plugins\$(ProjectName)\&quot;" />
  14. </Target>
  15. </Project>