2021-04-02 21:42:00 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-04-02 22:44:29 +04:00
|
|
|
<ProjectReference Include="..\..\Common\ModuleTools\ModuleTools.csproj" />
|
2021-04-27 15:14:35 +04:00
|
|
|
<ProjectReference Include="..\..\Security\SecurityBusinessLogic\SecurityBusinessLogic.csproj" />
|
2021-04-02 22:44:29 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
2021-04-02 21:42:00 +04:00
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
<Exec Command="copy /Y "$(TargetDir)*.dll" "$(SolutionDir)ImplementationExtensions\*.dll"" />
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
</Project>
|