forked from Andoreatta/biometric-service-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBiometricService.csproj
More file actions
41 lines (36 loc) · 1.55 KB
/
Copy pathBiometricService.csproj
File metadata and controls
41 lines (36 loc) · 1.55 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
40
41
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<IsTransformWebConfigDisabled>true</IsTransformWebConfigDisabled>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>dotnet-BiometricService-c7d8d14c-120e-4583-b733-7856abd5d006</UserSecretsId>
<ApplicationIcon>icone-finger.ico</ApplicationIcon>
<AssemblyVersion>2.4.7.0</AssemblyVersion>
<FileVersion>2.4.7.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="icone-finger.ico" />
</ItemGroup>
<!-- Ensure appsettings files are copied to output and publish folders -->
<ItemGroup>
<None Include="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</None>
<None Include="appsettings.Development.json" Condition="Exists('appsettings.Development.json')">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0-rc.2.23479.6" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="7.0.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="NITGEN.SDK.NBioBSP">
<HintPath>C:\Program Files (x86)\NITGEN\eNBSP SDK Professional\SDK\dotNET\NITGEN.SDK.NBioBSP.dll</HintPath>
</Reference>
</ItemGroup>
</Project>