-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathNFCReader.csproj
More file actions
26 lines (22 loc) · 852 Bytes
/
NFCReader.csproj
File metadata and controls
26 lines (22 loc) · 852 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PCSC" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Tests/**" />
<Compile Remove="Examples/**" />
<Compile Remove="NFC_Test/**" />
<Compile Remove="PCSC_Test/**" />
<Compile Remove="SCardState_Test/**" />
<Compile Remove="PCSC_API_Test/**" />
</ItemGroup>
</Project>