PIbd-22_Isaeva_A.I._FishFac.../FishFactoryFileImplement/FishFactoryFileImplement.csproj

18 lines
602 B
XML
Raw Permalink Normal View History

2024-03-02 12:10:12 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-05-12 12:56:51 +04:00
<TargetFramework>net8.0</TargetFramework>
2024-03-02 12:10:12 +04:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\FishFactoryContracts\FishFactoryContracts.csproj" />
<ProjectReference Include="..\FishFactoryDataModels\FishFactoryDataModel.csproj" />
</ItemGroup>
2024-06-18 15:56:18 +04:00
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
2024-06-19 13:54:56 +04:00
<Exec Command="copy /Y &quot;$(TargetDir)*.dll&quot; &quot;$(SolutionDir)\ImplementationExtensions\*.dll&quot;" />
2024-06-18 15:56:18 +04:00
</Target>
</Project>