-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBiometricAPI.csproj
More file actions
39 lines (34 loc) · 1.31 KB
/
BiometricAPI.csproj
File metadata and controls
39 lines (34 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>BiometricAPI</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.14" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.14">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.14" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="CIDBio">
<HintPath>lib\CIDBio.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="lib\libcidbio.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Link>libcidbio.dll</Link>
</None>
<None Include="lib\CIDBio.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Link>CIDBio.dll</Link>
</None>
</ItemGroup>
</Project>