-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyFirstFusee.csproj
36 lines (36 loc) · 1.3 KB
/
MyFirstFusee.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Content Include="Assets\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Reference Include="$(FuseeRoot)bin/Debug/Libraries/Fusee.Base.Common.dll">
<Private>False</Private>
</Reference>
<Reference Include="$(FuseeRoot)bin/Debug/Libraries/Fusee.Base.Core.dll">
<Private>False</Private>
</Reference>
<Reference Include="$(FuseeRoot)bin/Debug/Libraries/Fusee.Math.Core.dll">
<Private>False</Private>
</Reference>
<Reference Include="$(FuseeRoot)bin/Debug/Libraries/Fusee.Serialization.dll">
<Private>False</Private>
</Reference>
<Reference Include="$(FuseeRoot)bin/Debug/Libraries/Fusee.Xene.dll">
<Private>False</Private>
</Reference>
<Reference Include="$(FuseeRoot)bin/Debug/Libraries/Fusee.Engine.Common.dll">
<Private>False</Private>
</Reference>
<Reference Include="$(FuseeRoot)bin/Debug/Libraries/Fusee.Engine.Core.dll">
<Private>False</Private>
</Reference>
<Reference Include="$(FuseeRoot)bin/Debug/Libraries/Fusee.Engine.GUI.dll">
<Private>False</Private>
</Reference>
</ItemGroup>
</Project>