MonodroidStockPortfolio/MonoStockPortfolio.Tests/MonoStockPortfolio.Tests.csproj
2011-03-30 22:34:11 -04:00

124 lines
No EOL
6.6 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>{C2797FAB-AFAB-49F6-9131-FC9BF03CAB9D}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MonoStockPortfolio.Tests</RootNamespace>
<AssemblyName>MonoStockPortfolio.Tests</AssemblyName>
<FileAlignment>512</FileAlignment>
</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>
<NoWarn>169</NoWarn>
</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="Machine.Specifications">
<HintPath>..\packages\Machine.Specifications.0.4.8.0\lib\Machine.Specifications.dll</HintPath>
</Reference>
<Reference Include="Mono.Android">
<Private>True</Private>
</Reference>
<Reference Include="mscorlib">
<Private>True</Private>
</Reference>
<Reference Include="PostSharp.SL, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b13fd38b8f9c99d7, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\PostSharp.SL.dll</HintPath>
</Reference>
<Reference Include="System">
<Private>True</Private>
</Reference>
<Reference Include="System.Core">
<Private>True</Private>
</Reference>
<Reference Include="System.Xml.Linq">
<Private>True</Private>
</Reference>
<Reference Include="Telerik.JustMock.Silverlight">
<HintPath>..\libs\Telerik.JustMock.Silverlight.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Framework\When_validating_forms_with_validation_errors.cs" />
<Compile Include="MetaTests.cs" />
<Compile Include="Presenters\Given_an_initialized_Config_Presenter.cs" />
<Compile Include="Presenters\EditPortfolioTests.cs" />
<Compile Include="Presenters\EditPositionTests.cs" />
<Compile Include="Presenters\MainPresenterTests.cs" />
<Compile Include="Presenters\PortfolioPresenterTests.cs" />
<Compile Include="Presenters\When_done_initializing_a_Portfolio_Presenter.cs" />
<Compile Include="Presenters\When_initialize_the_config_presenter.cs" />
<Compile Include="Presenters\When_initializing_the_edit_portfolio_presenter_with_an_id.cs" />
<Compile Include="Presenters\When_initializing_the_edit_portfolio_presenter_with_no_id.cs" />
<Compile Include="Presenters\When_initializing_the_edit_position_presenter_with_an_id.cs" />
<Compile Include="Presenters\When_initializing_the_edit_position_presenter_with_no_id.cs" />
<Compile Include="Presenters\When_initializing_the_Main_Presenter.cs" />
<Compile Include="Presenters\When_the_user_selects_delete_context_option.cs" />
<Compile Include="Presenters\When_the_user_selects_edit_context_option.cs" />
<Compile Include="Presenters\When_the_user_tries_to_save_a_new_portfolio_with_a_blank_name.cs" />
<Compile Include="Presenters\When_the_user_tries_to_save_a_portfolio_with_a_duplicated_name.cs" />
<Compile Include="Presenters\When_the_user_wants_to_add_a_new_portfolio.cs" />
<Compile Include="Presenters\When_the_user_wants_to_add_a_new_position.cs" />
<Compile Include="Presenters\When_the_user_wants_to_configure_the_display_fields.cs" />
<Compile Include="Presenters\When_the_user_wants_to_delete_a_portfolio.cs" />
<Compile Include="Presenters\When_the_user_wants_to_edit_a_portfolio.cs" />
<Compile Include="Presenters\When_the_user_wants_to_exit_the_app.cs" />
<Compile Include="Presenters\When_the_user_wants_to_refresh_the_positions.cs" />
<Compile Include="Presenters\When_the_user_wants_to_save_an_invalid_position.cs" />
<Compile Include="Presenters\When_the_user_wants_to_save_an_invalid_position_with_blank_fields.cs" />
<Compile Include="Presenters\When_the_user_wants_to_save_a_valid_portfolio.cs" />
<Compile Include="Presenters\When_the_user_wants_to_save_a_valid_position.cs" />
<Compile Include="Presenters\When_the_user_wants_to_save_configuration.cs" />
<Compile Include="Presenters\When_the_user_wants_to_see_the_context_menu.cs" />
<Compile Include="Presenters\When_the_user_wants_to_view_a_portfolio.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Services\When_using_the_Yahoo_stock_data_service_to_validate_tickers.cs" />
<Compile Include="Services\YahooStockDataServiceTests.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MonoStockPortfolio.Core\MonoStockPortfolio.Core.csproj">
<Project>{251E7BB4-CFE2-4DE4-9E2A-AAE1AF41C8CB}</Project>
<Name>MonoStockPortfolio.Core</Name>
</ProjectReference>
<ProjectReference Include="..\MonoStockPortfolio.Entities\MonoStockPortfolio.Entities.csproj">
<Project>{05A57650-3B41-46FF-9EAD-9112B5EFBEED}</Project>
<Name>MonoStockPortfolio.Entities</Name>
</ProjectReference>
<ProjectReference Include="..\MonoStockPortfolio\MonoStockPortfolio.csproj">
<Project>{E23D8575-CE4E-4716-B9C7-70115D23ADBB}</Project>
<Name>MonoStockPortfolio</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="PostSharp.Custom.targets" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Novell\Novell.MonoDroid.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>