-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUniScan.Device.csproj
More file actions
executable file
·29 lines (24 loc) · 987 Bytes
/
Copy pathUniScan.Device.csproj
File metadata and controls
executable file
·29 lines (24 loc) · 987 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
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<LangVersion>14</LangVersion>
<Company>UniScanProject</Company>
<AssemblyVersion>0.3.0</AssemblyVersion>
<FileVersion>0.3.0</FileVersion>
<Description>Device abstractions and transport methods</Description>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\external\Shiki\Shiki.Common\Shiki.Common.csproj" />
<ProjectReference Include="..\UniScan.Core\UniScan.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Connection\Protocol\Command\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Semver" Version="3.0.0" />
<PackageReference Include="Serilog" Version="4.4.0" />
</ItemGroup>
</Project>