1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>10.0.0</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{098BBC2D-63A6-4C22-8A30-E6C4F4FC0AC4}</ProjectGuid>
- <OutputType>Library</OutputType>
- <RootNamespace>RolePlayingGameData</RootNamespace>
- <AssemblyName>RolePlayingGameDataWindows</AssemblyName>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>True</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>False</Optimize>
- <OutputPath>bin\Debug</OutputPath>
- <DefineConstants>DEBUG</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>False</ConsolePause>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>none</DebugType>
- <Optimize>False</Optimize>
- <OutputPath>bin\Release</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>False</ConsolePause>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Drawing" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="ContentEntry.cs" />
- <Compile Include="ContentObject.cs" />
- <Compile Include="Direction.cs" />
- <Compile Include="GameStartDescription.cs" />
- <Compile Include="MapEntry.cs" />
- <Compile Include="MissingMethods.cs" />
- <Compile Include="Spell.cs" />
- <Compile Include="WeightedContentEntry.cs" />
- <Compile Include="WorldEntry.cs" />
- <Compile Include="WorldObject.cs" />
- <Compile Include="Animation\AnimatingSprite.cs" />
- <Compile Include="Animation\Animation.cs" />
- <Compile Include="Characters\Character.cs" />
- <Compile Include="Characters\CharacterClass.cs" />
- <Compile Include="Characters\CharacterLevelDescription.cs" />
- <Compile Include="Characters\CharacterLevelingStatistics.cs" />
- <Compile Include="Characters\FightingCharacter.cs" />
- <Compile Include="Characters\Monster.cs" />
- <Compile Include="Characters\Player.cs" />
- <Compile Include="Characters\QuestNpc.cs" />
- <Compile Include="Data\Int32Range.cs" />
- <Compile Include="Data\StatisticsRange.cs" />
- <Compile Include="Data\StatisticsValue.cs" />
- <Compile Include="Data\StatisticsValueStack.cs" />
- <Compile Include="Gear\Armor.cs" />
- <Compile Include="Gear\Equipment.cs" />
- <Compile Include="Gear\Gear.cs" />
- <Compile Include="Gear\GearDrop.cs" />
- <Compile Include="Gear\Item.cs" />
- <Compile Include="Gear\Weapon.cs" />
- <Compile Include="Map\Chest.cs" />
- <Compile Include="Map\FixedCombat.cs" />
- <Compile Include="Map\Inn.cs" />
- <Compile Include="Map\Map.cs" />
- <Compile Include="Map\Portal.cs" />
- <Compile Include="Map\RandomCombat.cs" />
- <Compile Include="Map\Store.cs" />
- <Compile Include="Map\StoreCategory.cs" />
- <Compile Include="Quests\Quest.cs" />
- <Compile Include="Quests\QuestLine.cs" />
- <Compile Include="Quests\QuestRequirement.cs" />
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <ItemGroup>
- <None Include="AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
- <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
- <Name>MonoGame.Framework.MacOS</Name>
- </ProjectReference>
- <ProjectReference Include="..\..\..\ThirdParty\Lidgren.Network\Lidgren.Network.MacOS.csproj">
- <Project>{AE483C29-042E-4226-BA52-D247CE7676DA}</Project>
- <Name>Lidgren.Network.MacOS</Name>
- </ProjectReference>
- </ItemGroup>
- </Project>
|