-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUniScan.Client.Core.csproj
More file actions
37 lines (33 loc) · 1.81 KB
/
Copy pathUniScan.Client.Core.csproj
File metadata and controls
37 lines (33 loc) · 1.81 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>14</LangVersion>
<Company>UniScanProject</Company>
<AssemblyVersion>0.3.0</AssemblyVersion>
<FileVersion>0.3.0</FileVersion>
<Description>Holds shared client code, no dep on Avalonia</Description>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\external\Shiki\Shiki.Common\Shiki.Common.csproj" />
<ProjectReference Include="..\..\..\external\Shiki\Shiki.ModuleManagement.Implementations\Shiki.ModuleManagement.Implementations.csproj" />
<ProjectReference Include="..\..\..\external\Shiki\Shiki.ModuleManagement\Shiki.ModuleManagement.csproj" />
<ProjectReference Include="..\..\Core\UniScan.Core\UniScan.Core.csproj" />
<ProjectReference Include="..\..\Core\UniScan.Device\UniScan.Device.csproj" />
<ProjectReference Include="..\..\..\external\Shiki\Shiki.TaskPipeline\Shiki.TaskPipeline.csproj" />
<ProjectReference Include="..\..\Platform\UniScan.Platform\UniScan.Platform.csproj" />
<ProjectReference Include="..\..\Network\UniScan.Network.Client\UniScan.Network.Client.csproj" />
<ProjectReference Include="..\..\Network\UniScan.Network\UniScan.Network.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="ObservableCollections.R3" />
<PackageReference Include="R3" />
<PackageReference Include="Serilog.Extensions.Logging" />
</ItemGroup>
<ItemGroup>
<Folder Include="Config\Types\" />
</ItemGroup>
</Project>