Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MonoDevelop.TextEditor.Tests.csproj « MonoDevelop.TextEditor.Tests « core « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 795e357d99b2d01833fea630fc5d5ea0187d72a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="..\..\..\MonoDevelop.props" />
  <PropertyGroup>
    <ReferencesVSEditorCopyToOutput>true</ReferencesVSEditorCopyToOutput>
  </PropertyGroup>
  <Import Project="$(ReferencesVSEditor)" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.30703</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{9E4BA410-8338-42EC-AF9C-422C35ECED81}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>MonoDevelop.TextEditor.Tests</RootNamespace>
    <AssemblyName>MonoDevelop.TextEditor.Tests</AssemblyName>
    <TestRunnerCommand>..\..\..\build\bin\mdtool.exe</TestRunnerCommand>
    <TestRunnerArgs>run-md-tests</TestRunnerArgs>
    <TargetFrameworkVersion>$(MDFrameworkVersion)</TargetFrameworkVersion>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <Optimize>false</Optimize>
    <OutputPath>..\..\..\build\tests</OutputPath>
    <DefineConstants>DEBUG</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <ConsolePause>false</ConsolePause>
    <DebugType>full</DebugType>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <Optimize>true</Optimize>
    <OutputPath>..\..\..\build\tests</OutputPath>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <ConsolePause>false</ConsolePause>
    <DebugSymbols>true</DebugSymbols>
    <DebugType>pdbonly</DebugType>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
    <Reference Include="glib-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
    <Reference Include="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
    <Reference Include="System.Core" />
    <Reference Include="atk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Mono.TextEditor.Tests\DocumentTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\LineSplitterTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\SearchTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\SelectionTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\UndoRedoTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\FoldingTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\SyntaxHighlightingTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\VirtualSpacesTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\InsertionModeTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\TextBreakerTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\SegmentTreeTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\RedBlackTreeTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\HeightTreeTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\SmartIndentModeTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\VirtualIndentModeTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\TextFileReaderTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\BlockSelectionModeTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\RtfWriterTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\HtmlWriterTests.cs" />
    <Compile Include="Mono.TextEditor.Tests.DefaultEditActions\InsertTabTests.cs" />
    <Compile Include="Mono.TextEditor.Tests.DefaultEditActions\RemoveTabTests.cs" />
    <Compile Include="Mono.TextEditor.Tests.DefaultEditActions\CaretMoveActionTests.cs" />
    <Compile Include="Mono.TextEditor.Tests.DefaultEditActions\DeleteActionTests.cs" />
    <Compile Include="Mono.TextEditor.Tests.DefaultEditActions\SelectionActionTests.cs" />
    <Compile Include="Mono.TextEditor.Tests.DefaultEditActions\TextEditorTestBase.cs" />
    <Compile Include="Mono.TextEditor.Tests.DefaultEditActions\BookmarkActionsTests.cs" />
    <Compile Include="Mono.TextEditor.Tests.DefaultEditActions\FoldActionTests.cs" />
    <Compile Include="Mono.TextEditor.Tests.DefaultEditActions\MiscActionsTest.cs" />
    <Compile Include="Mono.TextEditor.Tests\ClipboardTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\CompressingTreeListTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\SearchAndReplaceTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\SemanticRuleTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\TextEditorDataTests.cs" />
    <Compile Include="MonoDevelop.TextEditor.Extension\NavigationExtensionTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\DiffTrackerTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\TextViewTests.cs" />
    <Compile Include="Mono.TextEditor.Tests\TextLinkModeTests.cs" />
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <ItemGroup>
    <ProjectReference Include="..\..\..\external\guiunit\src\framework\GuiUnit_NET_4_5.csproj">
      <Project>{D12F0F7B-8DE3-43EC-BA49-41052D065A9B}</Project>
      <Name>GuiUnit_NET_4_5</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\addins\MonoDevelop.SourceEditor2\MonoDevelop.SourceEditor.csproj">
      <Project>{F8F92AA4-A376-4679-A9D4-60E7B7FBF477}</Project>
      <Name>MonoDevelop.SourceEditor</Name>
      <Private>False</Private>
    </ProjectReference>
    <ProjectReference Include="..\MonoDevelop.Core\MonoDevelop.Core.csproj">
      <Project>{7525BB88-6142-4A26-93B9-A30C6983390A}</Project>
      <Name>MonoDevelop.Core</Name>
    </ProjectReference>
    <ProjectReference Include="..\MonoDevelop.Ide\MonoDevelop.Ide.csproj">
      <Project>{27096E7F-C91C-4AC6-B289-6897A701DF21}</Project>
      <Name>MonoDevelop.Ide</Name>
    </ProjectReference>
  </ItemGroup>
</Project>