-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCore.csproj
More file actions
28 lines (24 loc) · 1.2 KB
/
Core.csproj
File metadata and controls
28 lines (24 loc) · 1.2 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<AssemblyName>SS.Core</AssemblyName>
<RootNamespace>SS.Core</RootNamespace>
<VersionPrefix>4.0.0</VersionPrefix>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.HighPerformance" Version="8.4.1" />
<PackageReference Include="Google.Protobuf" Version="3.34.1" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="10.0.5" />
<PackageReference Include="SkiaSharp" Version="3.119.2" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.119.2" />
<PackageReference Include="System.IO.Hashing" Version="10.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Packets\Packets.csproj" />
<ProjectReference Include="..\SourceGeneration\SourceGeneration.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<ProjectReference Include="..\Utilities\Utilities.csproj" />
</ItemGroup>
</Project>