-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAscii3dEngine.TechDemo.csproj
More file actions
41 lines (35 loc) · 1.29 KB
/
Copy pathAscii3dEngine.TechDemo.csproj
File metadata and controls
41 lines (35 loc) · 1.29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Engine\Ascii3dEngine.Engine.csproj" />
<Using Include="Ascii3dEngine.Engine" />
</ItemGroup>
<ItemGroup>
<Content Include="*.obj">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="batman.png">
<!-- From https://www.pngwing.com/en/free-png-zordq -->
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="earth.png">
<!--
From https://www.researchgate.net/figure/The-web-Mercator-projection_fig5_298354278
- Cropped to remove the boarder
- Colored water blue
- Colored land masses green or white
- removed longitude/latitude lines
-->
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>