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 "$(TargetDir)*.dll" "$(SolutionDir)\ImplementationExtensions\*.dll"" />
|
2024-06-18 15:56:18 +04:00
|
|
|
</Target>
|
|
|
|
|
2024-05-12 19:24:51 +04:00
|
|
|
</Project>
|