mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-03-22 01:44:20 -05:00
fixes #7 - checkProfile.asp parseable for all the important stuff. - getSchedule.asp , schedule generation and more added in. - getVIP.asp still works. - Questionnaries , now working and documented. I've tested all the bits individually (and that they match what my rust code does which is fully confirmed working). However, since there's no linux support I can't test this web server with the rest of my stack easily. Everything should all work and I've double checked each class individually on my side, but we should still probably get a double check from mm :)
159 lines
8.1 KiB
XML
159 lines
8.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>8.0.30703</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{408EFC7E-C6B0-4160-8628-2679E34385CE}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>PkmnFoundations</RootNamespace>
|
|
<AssemblyName>PkmnFoundations.Library</AssemblyName>
|
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<TargetFrameworkProfile />
|
|
<NuGetPackageImportStamp>21c4ccbf</NuGetPackageImportStamp>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="MySql.Data, Version=6.9.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
|
<HintPath>..\packages\MySql.Data.6.9.8\lib\net20\MySql.Data.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.configuration" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Data.SQLite, Version=1.0.94.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\packages\System.Data.SQLite.Core.1.0.94.0\lib\net20\System.Data.SQLite.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System.Data.SQLite.Linq">
|
|
<HintPath>..\packages\System.Data.SQLite.Linq.1.0.94.1\lib\net20\System.Data.SQLite.Linq.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System.Xml.Linq" />
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Data\Database.cs" />
|
|
<Compile Include="Data\DatabaseExtender.cs" />
|
|
<Compile Include="Data\DataMysql.cs" />
|
|
<Compile Include="Data\DataSqlite.cs" />
|
|
<Compile Include="Data\MySqlDatabaseExtender.cs" />
|
|
<Compile Include="Data\SqlDatabaseExtender.cs" />
|
|
<Compile Include="Pokedex\Ability.cs" />
|
|
<Compile Include="Pokedex\Evolution.cs" />
|
|
<Compile Include="Pokedex\FormAbilities.cs" />
|
|
<Compile Include="Pokedex\FormStats.cs" />
|
|
<Compile Include="Pokedex\Item.cs" />
|
|
<Compile Include="Pokedex\Location.cs" />
|
|
<Compile Include="Pokedex\Move.cs" />
|
|
<Compile Include="Pokedex\Pokedex.cs" />
|
|
<Compile Include="Pokedex\PokedexRecordBase.cs" />
|
|
<Compile Include="Pokedex\Region.cs" />
|
|
<Compile Include="Pokedex\Ribbon.cs" />
|
|
<Compile Include="Pokedex\Species.cs" />
|
|
<Compile Include="Pokedex\Family.cs" />
|
|
<Compile Include="Pokedex\Form.cs" />
|
|
<Compile Include="Pokedex\Type.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="Support\AliasTable.cs" />
|
|
<Compile Include="Wfc\BanStatus.cs" />
|
|
<Compile Include="Wfc\BattleSubwayPokemon5.cs" />
|
|
<Compile Include="Wfc\BattleSubwayProfile5.cs" />
|
|
<Compile Include="Wfc\BattleSubwayRecord5.cs" />
|
|
<Compile Include="Wfc\BattleTowerPokemon4.cs" />
|
|
<Compile Include="Wfc\BattleTowerPokemonBase.cs" />
|
|
<Compile Include="Wfc\BattleTowerProfileBase.cs" />
|
|
<Compile Include="Wfc\BattleTowerRecord4.cs" />
|
|
<Compile Include="Wfc\BattleTowerProfile4.cs" />
|
|
<Compile Include="Wfc\BattleTowerRecordBase.cs" />
|
|
<Compile Include="Wfc\BattleVideoHeader4.cs" />
|
|
<Compile Include="Wfc\BattleVideoHeader5.cs" />
|
|
<Compile Include="Wfc\BattleVideoRecord4.cs" />
|
|
<Compile Include="Wfc\BattleVideoRecord5.cs" />
|
|
<Compile Include="Support\BinarySerializableBase.cs" />
|
|
<Compile Include="Wfc\BoxRecord4.cs" />
|
|
<Compile Include="Structures\ByteStatValues.cs" />
|
|
<Compile Include="Structures\ContestStatValues.cs" />
|
|
<Compile Include="Wfc\DressupRecord4.cs" />
|
|
<Compile Include="Structures\Format.cs" />
|
|
<Compile Include="Wfc\GtsRecord5.cs" />
|
|
<Compile Include="Structures\Enums.cs" />
|
|
<Compile Include="Wfc\GtsRecord4.cs" />
|
|
<Compile Include="Wfc\GtsRecordBase.cs" />
|
|
<Compile Include="Structures\IvStatValues.cs" />
|
|
<Compile Include="Structures\MoveSlot.cs" />
|
|
<Compile Include="Wfc\MusicalRecord5.cs" />
|
|
<Compile Include="Structures\Pokemon4.cs" />
|
|
<Compile Include="Structures\Pokemon5.cs" />
|
|
<Compile Include="Structures\PokemonBase.cs" />
|
|
<Compile Include="Structures\IntStatValues.cs" />
|
|
<Compile Include="Structures\PokemonParty4.cs" />
|
|
<Compile Include="Structures\PokemonParty5.cs" />
|
|
<Compile Include="Structures\PokemonPartyBase.cs" />
|
|
<Compile Include="Structures\StatValues.cs" />
|
|
<Compile Include="Structures\StatValuesBase.cs" />
|
|
<Compile Include="Structures\TrainerMemo.cs" />
|
|
<Compile Include="Wfc\PlazaQuestionnaire.cs" />
|
|
<Compile Include="Wfc\PlazaSchedule.cs" />
|
|
<Compile Include="Wfc\TrainerProfile4.cs" />
|
|
<Compile Include="Wfc\TrainerProfile5.cs" />
|
|
<Compile Include="Wfc\TrainerProfileBase.cs" />
|
|
<Compile Include="Wfc\TrainerProfilePlaza.cs" />
|
|
<Compile Include="Wfc\TrainerRankings.cs" />
|
|
<Compile Include="Support\AssertHelper.cs" />
|
|
<Compile Include="Support\EncodedString4.cs" />
|
|
<Compile Include="Support\EncodedString5.cs" />
|
|
<Compile Include="Support\EncodedStringBase.cs" />
|
|
<Compile Include="Support\EnumerableExtender.cs" />
|
|
<Compile Include="Support\GameSyncUtils.cs" />
|
|
<Compile Include="Support\Indexer1d.cs" />
|
|
<Compile Include="Support\LazyKeyValuePair.cs" />
|
|
<Compile Include="Support\LocalizedString.cs" />
|
|
<Compile Include="Support\LogHelper.cs" />
|
|
<Compile Include="Support\StreamExtender.cs" />
|
|
<Compile Include="Support\StringHelper.cs" />
|
|
<Compile Include="Support\TrendyPhrase4.cs" />
|
|
<Compile Include="Support\TrendyPhrase5.cs" />
|
|
<Compile Include="Support\TrendyPhraseBase.cs" />
|
|
<Compile Include="Support\ValidationSummary.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="app.config" />
|
|
<None Include="packages.config" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
<Import Project="..\packages\System.Data.SQLite.Core.1.0.94.0\build\net20\System.Data.SQLite.Core.targets" Condition="Exists('..\packages\System.Data.SQLite.Core.1.0.94.0\build\net20\System.Data.SQLite.Core.targets')" />
|
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
|
<PropertyGroup>
|
|
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
|
</PropertyGroup>
|
|
<Error Condition="!Exists('..\packages\System.Data.SQLite.Core.1.0.94.0\build\net20\System.Data.SQLite.Core.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\System.Data.SQLite.Core.1.0.94.0\build\net20\System.Data.SQLite.Core.targets'))" />
|
|
</Target>
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
<Target Name="BeforeBuild">
|
|
</Target>
|
|
<Target Name="AfterBuild">
|
|
</Target>
|
|
-->
|
|
</Project> |