2024-06-22 22:32:20 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-04-17 10:13:26 +04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-05-11 13:39:57 +04:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2024-04-17 10:13:26 +04:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\AutomobilePlantContracts\AutomobilePlantContracts.csproj" />
|
|
|
|
|
<ProjectReference Include="..\AutomobilePlantDataModels\AutomobilePlantDataModels.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-06-22 22:32:20 +04:00
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
|
<Exec Command="copy /Y "$(TargetDir)*.dll" "$(SolutionDir)ImplementationExtensions\*.dll"" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2024-04-17 10:13:26 +04:00
|
|
|
|
</Project>
|