2024-03-23 12:04:42 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-04-05 17:36:10 +04:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2024-03-23 12:04:42 +04:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\PrecastConcretePlantContracts\PrecastConcretePlantContracts.csproj" />
|
2024-04-04 21:21:21 +04:00
|
|
|
|
<ProjectReference Include="..\PrecastConcretePlantListImplement\PrecastConcretePlantListImplement.csproj" />
|
2024-03-23 12:04:42 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-05-16 20:23:36 +04:00
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
|
<Exec Command="copy /Y "$(targetDir)*.dll" "$(solutionDir)ImplementationExtensions\*.dll"" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2024-03-23 12:04:42 +04:00
|
|
|
|
</Project>
|