AJAXBot/bot/bot/bot.csproj
2014-08-20 19:03:43 -05:00

114 lines
No EOL
4.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{1E318685-BF0A-4508-AE47-76C7442994D7}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>bot</RootNamespace>
<AssemblyName>bot</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net">
<HintPath>dll\log4net.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Scripting">
<HintPath>dll\Microsoft.Scripting.dll</HintPath>
</Reference>
<Reference Include="MySql.Data">
<HintPath>dll\MySql.Data.dll</HintPath>
</Reference>
<Reference Include="MySql.Data.Entity.EF5">
<HintPath>dll\MySql.Data.Entity.EF5.dll</HintPath>
</Reference>
<Reference Include="MySql.Data.Entity.EF6">
<HintPath>dll\MySql.Data.Entity.EF6.dll</HintPath>
</Reference>
<Reference Include="MySql.Web">
<HintPath>dll\MySql.Web.dll</HintPath>
</Reference>
<Reference Include="Selenium.WebDriverBackedSelenium">
<HintPath>dll\Selenium.WebDriverBackedSelenium.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="ThoughtWorks.Selenium.Core">
<HintPath>dll\ThoughtWorks.Selenium.Core.dll</HintPath>
</Reference>
<Reference Include="WebDriver">
<HintPath>dll\WebDriver.dll</HintPath>
</Reference>
<Reference Include="WebDriver.Support">
<HintPath>dll\WebDriver.Support.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Autonomous.cs" />
<Compile Include="Bot.cs" />
<Compile Include="Chat.cs" />
<Compile Include="Condition.cs" />
<Compile Include="ConditionChecker.cs" />
<Compile Include="ConditionHolder.cs" />
<Compile Include="conditions\msgcntword.cs" />
<Compile Include="conditions\msgcontains.cs" />
<Compile Include="conditions\msgis.cs" />
<Compile Include="conditions\msgstartsw.cs" />
<Compile Include="conditions\nameis.cs" />
<Compile Include="conditions\random.cs" />
<Compile Include="NavigationNode.cs" />
<Compile Include="Pulse.cs" />
<Compile Include="Query.cs" />
<Compile Include="responses\jumble.cs" />
<Compile Include="responses\replace.cs" />
<Compile Include="Sanitizer.cs" />
<Compile Include="_G.cs" />
<Compile Include="Message.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Response.cs" />
<Compile Include="responses\sendmsg.cs" />
<Compile Include="ResponseCaller.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="dbinfo.txt" />
<Content Include="dbinfo_generic.txt" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- 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>