Add post-build event back.

This commit is contained in:
Jared Goodwin 2019-12-23 00:02:24 -08:00
parent 2ebd6649d3
commit 60e9684f9c

View File

@ -18,4 +18,8 @@
<ProjectReference Include="..\ScreenCast.Core\ScreenCast.Core.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if $(ConfigurationName) == Debug (&#xD;&#xA; if $(PlatformName) == Any CPU (&#xD;&#xA; md &quot;$(SolutionDir)Agent\bin\Debug\netcoreapp3.1\ScreenCast\&quot;&#xD;&#xA; copy /y &quot;$(TargetDir)\*&quot; &quot;$(SolutionDir)Agent\bin\Debug\netcoreapp3.1\ScreenCast\&quot;&#xD;&#xA; )&#xD;&#xA;)" />
</Target>
</Project>