<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net6.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> <Platforms>AnyCPU;x64;x86</Platforms> </PropertyGroup> <ItemGroup> <ProjectReference Include="..\SecuritySystemContracts\SecuritySystemContracts.csproj" /> <ProjectReference Include="..\SecuritySystemDataModels\SecuritySystemDataModels.csproj" /> </ItemGroup> <Target Name="PostBuild" AfterTargets="PostBuildEvent"> <Exec Command="copy /Y "$(TargetDir)*.dll" "$(SolutionDir)ImplementationExtensions\*.dll"" /> </Target> </Project>