diff options
Diffstat (limited to 'src/test/PlayingWithActiveReports.Test/PlayingWithActiveReports.Test.csproj')
| -rw-r--r-- | src/test/PlayingWithActiveReports.Test/PlayingWithActiveReports.Test.csproj | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/src/test/PlayingWithActiveReports.Test/PlayingWithActiveReports.Test.csproj b/src/test/PlayingWithActiveReports.Test/PlayingWithActiveReports.Test.csproj new file mode 100644 index 0000000..58ba792 --- /dev/null +++ b/src/test/PlayingWithActiveReports.Test/PlayingWithActiveReports.Test.csproj @@ -0,0 +1,104 @@ +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProductVersion>8.0.50727</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{BCAE3D41-051A-4D7B-8EBE-7604242621A8}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>PlayingWithActiveReports.Test</RootNamespace>
+ <AssemblyName>PlayingWithActiveReports.Test</AssemblyName>
+ <StartupObject>
+ </StartupObject>
+ </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>
+ </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="ActiveReports3, Version=5.2.0.397, Culture=neutral, PublicKeyToken=cc4967777c49a3ff">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\..\..\lib\active.reports\ActiveReports3.dll</HintPath>
+ </Reference>
+ <Reference Include="MbUnit.Framework, Version=2.41.232.0, Culture=neutral, PublicKeyToken=5e72ecd30bc408d5">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\..\..\tools\mbunit\bin\MbUnit.Framework.dll</HintPath>
+ </Reference>
+ <Reference Include="Rhino.Mocks, Version=3.1.0.584, Culture=neutral, PublicKeyToken=0b3305902db7183f, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\..\..\tools\rhino.mocks\Rhino.Mocks.dll</HintPath>
+ </Reference>
+ <Reference Include="System" />
+ <Reference Include="System.Data" />
+ <Reference Include="System.Deployment" />
+ <Reference Include="System.Drawing" />
+ <Reference Include="System.Windows.Forms" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="Domain\AnswerTest.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ <EmbeddedResource Include="Properties\Resources.resx">
+ <Generator>ResXFileCodeGenerator</Generator>
+ <LastGenOutput>Resources.Designer.cs</LastGenOutput>
+ <SubType>Designer</SubType>
+ </EmbeddedResource>
+ <Compile Include="Properties\Resources.Designer.cs">
+ <AutoGen>True</AutoGen>
+ <DependentUpon>Resources.resx</DependentUpon>
+ </Compile>
+ <None Include="Properties\Settings.settings">
+ <Generator>SettingsSingleFileGenerator</Generator>
+ <LastGenOutput>Settings.Designer.cs</LastGenOutput>
+ </None>
+ <Compile Include="Properties\Settings.Designer.cs">
+ <AutoGen>True</AutoGen>
+ <DependentUpon>Settings.settings</DependentUpon>
+ <DesignTimeSharedInput>True</DesignTimeSharedInput>
+ </Compile>
+ <Compile Include="Reports\MainReportTest.cs" />
+ <Compile Include="Reports\ReportSectionTest.cs" />
+ <Compile Include="Reports\ResultsReportTest.cs" />
+ <Compile Include="Reports\ResultsSectionBuilderTest.cs" />
+ <Compile Include="Reports\ResultsSectionTest.cs" />
+ <Compile Include="Repositories\QuestionBankTest.cs" />
+ <Compile Include="Domain\QuestionTest.cs" />
+ <Compile Include="Reports\ReportParameterTest.cs" />
+ <Compile Include="View\ResultsReportPresenterTest.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\app\PlayingWithActiveReports.Core\PlayingWithActiveReports.Core.csproj">
+ <Project>{B77DDEAC-6A13-4AA7-8C99-CD4234F7B105}</Project>
+ <Name>PlayingWithActiveReports.Core</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\..\app\PlayingWithActiveReports.Win.UI\PlayingWithActiveReports.Win.UI.csproj">
+ <Project>{09E6C76E-17AD-46F8-B09D-2C140942C9E5}</Project>
+ <Name>PlayingWithActiveReports.Win.UI</Name>
+ </ProjectReference>
+ </ItemGroup>
+ <ItemGroup>
+ <Folder Include="Task\" />
+ </ItemGroup>
+ <Import Project="$(MSBuildBinPath)\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>
\ No newline at end of file |
