-
Notifications
You must be signed in to change notification settings - Fork 5
/
DungeonRaider.fsproj
58 lines (52 loc) · 2.88 KB
/
DungeonRaider.fsproj
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>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Constants.fs" />
<Compile Include="Model.fs" />
<Compile Include="Util.fs" />
<Compile Include="PathFinding.fs" />
<Compile Include="Adjacency.fs" />
<Compile Include="Bsp.fs" />
<Compile Include="View.fs" />
<Compile Include="Controller.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<!-- Stuff outside the content pipeline - loaded directly -->
<ItemGroup>
<None Include="Content\pointer.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\dungeon.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\cleric.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\goblin.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\minotaur.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\orc.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\ranger.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\rat-bat.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\rogue.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\skeleton.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\slime.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\snake.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\warrior.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\wizard.png" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\standard-key.csv" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\minotaur-key.csv" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\skeleton-key.csv" CopyToOutputDirectory="PreserveNewest" />
<None Include="Content\Sprites\dungeon-key.csv" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<!-- Processed by content pipeline on build into xnb files -->
<ItemGroup>
<None Include="Content\Content.mgcb" />
<None Include="Content\Connection.otf" />
<None Include="Content\Connection.spritefont" />
<MonoGameContentReference Include="**\*.mgcb" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="astar-search" Version="1.0.1" />
<PackageReference Include="fsharp-gamecore" Version="0.0.4" />
<PackageReference Include="MonoGame.Content.Builder" Version="3.7.0.4" />
<PackageReference Include="MonoGame.Framework.DesktopGL.Core" Version="3.7.0.7" />
<PackageReference Include="System.Drawing.Common" Version="4.5.0" />
</ItemGroup>
</Project>