forked from FUSEEProjectTeam/Fusee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFusee.Engine.Imp.Graphics.Blazor.csproj
More file actions
31 lines (27 loc) · 1.31 KB
/
Copy pathFusee.Engine.Imp.Graphics.Blazor.csproj
File metadata and controls
31 lines (27 loc) · 1.31 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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<DefineConstants>$(DefineConstants);PLATFORM_BLAZOR</DefineConstants>
<DocumentationFile>$(OutputPath)\$(RootNamespace).xml</DocumentationFile>
<RunAOTCompilation>true</RunAOTCompilation>
</PropertyGroup>
<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\Math\Core\Fusee.Math.Core.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<ProjectReference Include="$(FuseeEngineRoot)\src\Engine\Common\Fusee.Engine.Common.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<ProjectReference Include="$(FuseeEngineRoot)\src\Engine\Core\Fusee.Engine.Core.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<PackageReference Include="Microsoft.JSInterop" Version="8.0.18" />
</ItemGroup>
<Import Project="$(FuseeEngineRoot)\src\Engine\Imp\Graphics\SharedAll\Fusee.Engine.Imp.Graphics.SharedAll.projitems" Label="Shared" />
</Project>