-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathFusee.Engine.Core.csproj
More file actions
58 lines (53 loc) · 2.18 KB
/
Copy pathFusee.Engine.Core.csproj
File metadata and controls
58 lines (53 loc) · 2.18 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<DocumentationFile>$(OutputPath)\$(RootNamespace).xml</DocumentationFile>
<IsPackable>true</IsPackable>
<Description>Fusee Engine Core</Description>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.HighPerformance" Version="8.4.0" />
<PackageReference Include="CommunityToolkit.Diagnostics" Version="8.4.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(FuseeEngineRoot)\src\Base\Common\Fusee.Base.Common.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<ProjectReference Include="$(FuseeEngineRoot)\src\Base\Core\Fusee.Base.Core.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<ProjectReference Include="$(FuseeEngineRoot)\src\Jometri\Fusee.Jometri.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<ProjectReference Include="$(FuseeEngineRoot)\src\Xene\Fusee.Xene.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<ProjectReference Include="$(FuseeEngineRoot)\src\Xirkit\Fusee.Xirkit.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<ProjectReference Include="$(FuseeEngineRoot)\src\Engine\Common\Fusee.Engine.Common.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<ProjectReference Include="$(FuseeEngineRoot)\src\Math\Core\Fusee.Math.Core.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<ProjectReference Include="$(FuseeEngineRoot)\src\Serialization\Fusee.Serialization.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Update="Assets\lineAdjacency.geom">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\line.frag">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\line.geom">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\line.vert">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>