28 lines
881 B
XML
Raw Normal View History

2024-05-22 18:56:53 +04:00
<Project Sdk="Microsoft.NET.Sdk">
2024-05-07 17:56:47 +04:00
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2024-05-08 00:49:35 +04:00
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SecuritySystemContracts\SecuritySystemContracts.csproj" />
<ProjectReference Include="..\SecuritySystemDataModels\SecuritySystemDataModels.csproj" />
</ItemGroup>
2024-05-22 18:56:53 +04:00
<ItemGroup>
<Folder Include="Migrations\" />
</ItemGroup>
2024-06-22 10:36:54 +04:00
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y &quot;$(TargetDir)*.dll&quot; &quot;$(SolutionDir)ImplementationExtensions\*.dll&quot;" />
</Target>
2024-05-07 17:56:47 +04:00
</Project>