PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantListImplement/AircraftPlantListImplement.csproj

19 lines
612 B
XML
Raw Normal View History

2024-02-21 01:42:28 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\AircraftPlantContracts\AircraftPlantContracts.csproj" />
<ProjectReference Include="..\AircraftPlantDataModels\AircraftPlantDataModels.csproj" />
</ItemGroup>
2024-05-13 02:01:32 +04:00
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y &quot;$(TargetDir)*.dll&quot; &quot;$(SolutionDir)ImplementationExtensions\*.dll&quot;" />
</Target>
2024-02-21 01:42:28 +04:00
</Project>