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

IdeUnitTests.csproj « IdeUnitTests « tests « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f542f3f167c406b9c9e822da9bcfb618b20158a7 (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
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="..\..\MonoDevelop.props" />
  <Import Project="$(ReferencesVSEditor)" />
  <Import Project="$(ReferencesGtk)" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{F7B2B155-7CF4-42C4-B5AF-63C0667D2E4F}</ProjectGuid>
    <TargetFrameworkVersion>$(MDFrameworkVersion)</TargetFrameworkVersion>
    <OutputPath>..\..\build\tests</OutputPath>
    <!--
    This contains tests for many deprecated editor APIs, disable deprecation warnings for now.
    -->
    <NoWarn>$(NoWarn);618;612</NoWarn>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Collections.Immutable, Version=1.2.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="IdeTestBase.cs" />
    <Compile Include="TextEditorExtensionTestBase.cs" />
    <Compile Include="TypeSystemServiceTestExtensions.cs" />
    <Compile Include="TestViewContent.cs" />
    <Compile Include="RoslynTestBase.cs" />
    <Compile Include="CompositionManagerTestHelpers.cs" />
    <Compile Include="ProjectTemplateTest.cs" />
    <Compile Include="ServiceHelper.cs" />
    <Compile Include="MockShell.cs" />
    <Compile Include="MockShellWindow.cs" />
    <Compile Include="MockProgressMonitorManager.cs" />
    <Compile Include="MockOutputProgressMonitor.cs" />
    <Compile Include="MockOperationConsole.cs" />
    <Compile Include="MockShellNotebook.cs" />
    <Compile Include="MockShellDocumentViewContent.cs" />
    <Compile Include="MockShellDocumentViewContainer.cs" />
    <Compile Include="MockShellDocumentView.cs" />
    <Compile Include="MockShellDocumentToolbar.cs" />
    <Compile Include="MockViewBuilder.cs" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\src\core\MonoDevelop.Core\MonoDevelop.Core.csproj">
      <Project>{7525BB88-6142-4A26-93B9-A30C6983390A}</Project>
      <Name>MonoDevelop.Core</Name>
      <Private>False</Private>
    </ProjectReference>
    <ProjectReference Include="..\..\src\core\MonoDevelop.Ide\MonoDevelop.Ide.csproj">
      <Project>{27096E7F-C91C-4AC6-B289-6897A701DF21}</Project>
      <Name>MonoDevelop.Ide</Name>
      <Private>False</Private>
    </ProjectReference>
    <ProjectReference Include="..\..\external\mono-addins\Mono.Addins\Mono.Addins.csproj">
      <Project>{91DD5A2D-9FE3-4C3C-9253-876141874DAD}</Project>
      <Name>Mono.Addins</Name>
      <Private>False</Private>
    </ProjectReference>
    <ProjectReference Include="..\UnitTests\UnitTests.csproj">
      <Project>{1497D0A8-AFF1-4938-BC22-BE79B358BA5B}</Project>
      <Name>UnitTests</Name>
      <Private>False</Private>
    </ProjectReference>
    <ProjectReference Include="..\..\external\xwt\Xwt\Xwt.csproj">
      <Project>{92494904-35FA-4DC9-BDE9-3A3E87AC49D3}</Project>
      <Name>Xwt</Name>
      <Private>False</Private>
    </ProjectReference>
    <ProjectReference Include="..\..\external\guiunit\src\framework\GuiUnit_NET_4_5.csproj">
      <Project>{D12F0F7B-8DE3-43EC-BA49-41052D065A9B}</Project>
      <Name>GuiUnit_NET_4_5</Name>
      <Private>False</Private>
    </ProjectReference>
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <Target Name="AfterBuild">
     <Copy SourceFiles="$(OutputPath)\$(AssemblyName).dll" DestinationFolder="..\..\build\bin\testing" SkipUnchangedFiles="true" />
     <Copy SourceFiles="$(OutputPath)\GuiUnit.exe" DestinationFolder="..\..\build\bin\testing" SkipUnchangedFiles="true" />
   </Target>
</Project>