-
Notifications
You must be signed in to change notification settings - Fork 0
/
frogue.fsproj
30 lines (30 loc) · 1.04 KB
/
frogue.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>
<ItemGroup>
<Compile Include="Types.fs" />
<Compile Include="Compass.fs" />
<Compile Include="Command.fs" />
<Compile Include="Input.fs" />
<Compile Include="CombatMap.fs" />
<Compile Include="Dijkstra.fs" />
<Compile Include="CombatGraph.fs" />
<Compile Include="ActionTypes.fs" />
<Compile Include="CommandParser.fs" />
<Compile Include="Tilesets.fs" />
<Compile Include="DataConverter.fs" />
<Compile Include="SaveSystem.fs" />
<Compile Include="ScreenWriter.fs" />
<Compile Include="Status.fs" />
<Compile Include="MapWriter.fs" />
<Compile Include="Output.fs" />
<Compile Include="Action.fs" />
<Compile Include="TimeSystem.fs" />
<Compile Include="Script.fs" />
<Compile Include="ActionGenerator.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
</Project>