forked from FUSEEProjectTeam/Fusee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFusee.Base.Core.csproj
More file actions
26 lines (20 loc) · 920 Bytes
/
Copy pathFusee.Base.Core.csproj
File metadata and controls
26 lines (20 loc) · 920 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>
<TargetFrameworks>net8.0</TargetFrameworks>
<DocumentationFile>$(OutputPath)\$(RootNamespace).xml</DocumentationFile>
<IsPackable>true</IsPackable>
<Description>Fusee Base Core</Description>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="$(FuseeEngineRoot)\src\Math\Core\Fusee.Math.Core.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<ProjectReference Include="$(FuseeEngineRoot)\src\Base\Common\Fusee.Base.Common.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.7" />
<PackageReference Include="SixLabors.Fonts" Version="2.1.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.7" />
</ItemGroup>
</Project>