-
Notifications
You must be signed in to change notification settings - Fork 0
/
Neoan Mapgen.civ5proj
92 lines (92 loc) · 3.26 KB
/
Neoan Mapgen.civ5proj
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Deploy" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Default</Configuration>
<ProjectGuid>{44c30411-2397-4d59-bd59-eef78519ec56}</ProjectGuid>
<Name>neoan mapgen</Name>
<Guid>03e44683-136a-4984-afa1-eb70277b7bf8</Guid>
<ModVersion>69</ModVersion>
<Stability>Stable</Stability>
<Teaser>just bunch of map generation stuff</Teaser>
<Description>bunch of map generation stuff that I use to satisfy my play</Description>
<Authors>N.Core</Authors>
<SpecialThanks>
</SpecialThanks>
<AffectsSavedGames>false</AffectsSavedGames>
<MinCompatibleSaveVersion>0</MinCompatibleSaveVersion>
<SupportsSinglePlayer>true</SupportsSinglePlayer>
<SupportsMultiplayer>true</SupportsMultiplayer>
<SupportsHotSeat>true</SupportsHotSeat>
<SupportsMac>true</SupportsMac>
<AssemblyName>neoan mapgen</AssemblyName>
<RootNamespace>neoan mapgen</RootNamespace>
<ModReferences>
<Association>
<Type>Mod</Type>
<Name>More Wonders for VP</Name>
<Id>3e151552-1683-4881-b736-8ee89226f599</Id>
<MinVersion>0</MinVersion>
<MaxVersion>999</MaxVersion>
</Association>
</ModReferences>
<ModDependencies>
<Association xmlns="">
<Type>Mod</Type>
<Name>Vox Populi</Name>
<Id>8411a7a8-dad3-4622-a18e-fcc18324c799</Id>
<MinVersion>15</MinVersion>
<MaxVersion>999</MaxVersion>
</Association>
</ModDependencies>
<ModActions>
<Action>
<Set>OnModActivated</Set>
<Type>UpdateDatabase</Type>
<FileName>SQL/MapsImprovedRiverSystems.sql</FileName>
</Action>
<Action>
<Set>OnModActivated</Set>
<Type>UpdateDatabase</Type>
<FileName>SQL/FeatureGeneratorGameOptions.sql</FileName>
</Action>
</ModActions>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Default' ">
<OutputPath>.</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Package Only' ">
<PackageMod>true</PackageMod>
<DeployMod>false</DeployMod>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Deploy Only' ">
<PackageMod>false</PackageMod>
<DeployMod>true</DeployMod>
</PropertyGroup>
<ItemGroup>
<Folder Include="Lua" />
<Folder Include="SQL" />
</ItemGroup>
<ItemGroup>
<Content Include="Lua\AssignStartingPlots.lua">
<SubType>Lua</SubType>
<ImportIntoVFS>True</ImportIntoVFS>
</Content>
<Content Include="Lua\FeatureGenerator.lua">
<SubType>Lua</SubType>
<ImportIntoVFS>True</ImportIntoVFS>
</Content>
<Content Include="Lua\MapGenerator.lua">
<SubType>Lua</SubType>
<ImportIntoVFS>True</ImportIntoVFS>
</Content>
<Content Include="SQL\FeatureGeneratorGameOptions.sql">
<SubType>Lua</SubType>
<ImportIntoVFS>False</ImportIntoVFS>
</Content>
<Content Include="SQL\MapsImprovedRiverSystems.sql">
<SubType>Lua</SubType>
<ImportIntoVFS>False</ImportIntoVFS>
</Content>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Firaxis\ModBuddy\Civ5Mod.targets" />
</Project>