-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththrustr engine.csproj
55 lines (50 loc) · 2.12 KB
/
thrustr engine.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AssimpNet" Version="4.1.0" />
<PackageReference Include="SimulationFramework" Version="0.3.0-alpha.11" />
<PackageReference Include="SimulationFramework.Desktop" Version="0.3.0-alpha.11" />
<PackageReference Include="SimulationFramework.OpenGL" Version="0.3.0-alpha.11" />
</ItemGroup>
<ItemGroup>
<None Update="thrustr\assets\fonts\def font.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="thrustr\assets\fonts\def font.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="thrustr\assets\audio\introfade.wav">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="thrustr\assets\editor\3D\meshes\translate.fbx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="thrustr\assets\sprites\icons\engine logo grayscale.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="thrustr\assets\sprites\icons\engine logo.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="thrustr\assets\sprites\icons\engine small grayscale.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="thrustr\assets\sprites\icons\engine small.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="thrustr\assets\sprites\icons\sf logo grayscale.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="thrustr\assets\sprites\icons\sf logo.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="assets\" />
<Folder Include="thrustr\editor\editor\" />
</ItemGroup>
</Project>