~ubuntu-branches/debian/sid/nunit/sid

« back to all changes in this revision

Viewing changes to src/GuiException/tests/nunit.uiexception.tests.csproj

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2014-09-16 13:43:36 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140916134336-kjxz48tty6lx2ja5
Tags: 2.6.3+dfsg-1
* [c7bd1b5] Imported Upstream version 2.6.3+dfsg
* [bcb4bf8] Move nunit-console-runner to GAC-installed libnunit2.6, 
  don't treat it as a private lib. This lib is signed, and treated 
  as a GAC lib by consumers such as MonoDevelop.
* [7f08e99] Bump version to 2.6.3 as required
* [84535eb] Refreshed patches
* [8479f61] Split package up into per-assembly packages. This makes 
  ABI tracking easier in the future, as we can meaningfully have GAC 
  policy for cases where ABI isn't truly bumped, and no policy for 
  cases where it is. For example, if nunit.framework bumps ABI but 
  nunit.core does not, previously we would need to rebuild everything 
  using NUnit, but under the new split packaging, that rebuild would 
  not be needed for apps only using nunit.core.
* [17a7dc7] Add missing nunit.mocks.dll to nunit.pc

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="utf-8"?>
2
 
<Project  DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
 
  <PropertyGroup>
4
 
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5
 
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6
 
    <ProductVersion>9.0.30729</ProductVersion>
7
 
    <SchemaVersion>2.0</SchemaVersion>
8
 
    <ProjectGuid>{092486D0-6AB9-4134-932F-0FDA10704455}</ProjectGuid>
9
 
    <OutputType>Library</OutputType>
10
 
    <RootNamespace>NUnit.UiException.Tests</RootNamespace>
11
 
    <AssemblyName>nunit.uiexception.tests</AssemblyName>
12
 
    <FileAlignment>512</FileAlignment>
13
 
    <FileUpgradeFlags>
14
 
    </FileUpgradeFlags>
15
 
    <OldToolsVersion>3.5</OldToolsVersion>
16
 
    <UpgradeBackupLocation />
17
 
    <TargetFrameworkProfile />
18
 
  </PropertyGroup>
19
 
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20
 
    <DebugSymbols>true</DebugSymbols>
21
 
    <DebugType>full</DebugType>
22
 
    <Optimize>false</Optimize>
23
 
    <OutputPath>..\..\..\bin\Debug\tests\</OutputPath>
24
 
    <DefineConstants>TRACE;DEBUG;CLR_2_0,NET_3_5,CS_3_0</DefineConstants>
25
 
    <ErrorReport>prompt</ErrorReport>
26
 
    <WarningLevel>4</WarningLevel>
27
 
  </PropertyGroup>
28
 
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29
 
    <DebugType>pdbonly</DebugType>
30
 
    <Optimize>true</Optimize>
31
 
    <OutputPath>..\..\..\bin\Release\tests\</OutputPath>
32
 
    <DefineConstants>TRACE;CLR_2_0,NET_3_5,CS_3_0</DefineConstants>
33
 
    <ErrorReport>prompt</ErrorReport>
34
 
    <WarningLevel>4</WarningLevel>
35
 
  </PropertyGroup>
36
 
  <ItemGroup>
37
 
    <Reference Include="System" />
38
 
    <Reference Include="System.Core">
39
 
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
40
 
    </Reference>
41
 
    <Reference Include="System.Data" />
42
 
    <Reference Include="System.Drawing" />
43
 
    <Reference Include="System.Windows.Forms" />
44
 
    <Reference Include="System.Xml" />
45
 
    <Reference Include="NSubstitute">
46
 
      <HintPath>..\..\..\lib\3.5\NSubstitute.dll</HintPath>
47
 
    </Reference>
48
 
  </ItemGroup>
49
 
  <ItemGroup>
50
 
    <ProjectReference Include="..\..\NUnitFramework\framework\nunit.framework.dll.csproj">
51
 
      <Project>{83DD7E12-A705-4DBA-9D71-09C8973D9382}</Project>
52
 
      <Name>nunit.framework.dll</Name>
53
 
    </ProjectReference>
54
 
    <ProjectReference Include="..\..\tests\test-utilities\test-utilities.csproj">
55
 
      <Project>{3E63AD0F-24D4-46BE-BEE4-5A3299847D86}</Project>
56
 
      <Name>test-utilities</Name>
57
 
    </ProjectReference>
58
 
    <ProjectReference Include="..\UiException\nunit.uiexception.dll.csproj">
59
 
      <Project>{3E87A106-EB20-4147-84C8-95B0BB43A1D4}</Project>
60
 
      <Name>nunit.uiexception.dll</Name>
61
 
    </ProjectReference>
62
 
  </ItemGroup>
63
 
  <ItemGroup>
64
 
    <Compile Include="..\..\CommonAssemblyInfo.cs">
65
 
      <Link>CommonAssemblyInfo.cs</Link>
66
 
    </Compile>
67
 
    <Compile Include="CodeFormatters\TestCodeFormatterCollection.cs" />
68
 
    <Compile Include="CodeFormatters\TestGeneralCodeFormatter.cs" />
69
 
    <Compile Include="CodeFormatters\TestPlainTextCodeFormatter.cs" />
70
 
    <Compile Include="Controls\TestCodeBox.cs" />
71
 
    <Compile Include="Controls\TestCodeRenderingContext.cs" />
72
 
    <Compile Include="Controls\TestDefaultCodeRenderer.cs" />
73
 
    <Compile Include="Controls\TestDefaultErrorListRenderer.cs" />
74
 
    <Compile Include="Controls\TestErrorBrowser.cs" />
75
 
    <Compile Include="Controls\TestErrorList.cs" />
76
 
    <Compile Include="Controls\TestErrorPanelLayout.cs" />
77
 
    <Compile Include="Controls\TestErrorToolbar.cs" />
78
 
    <Compile Include="Controls\TestSourceCodeDisplay.cs" />
79
 
    <Compile Include="Controls\TestSplitterBox.cs" />
80
 
    <Compile Include="Controls\TestStackTraceDisplay.cs" />
81
 
    <Compile Include="CSharpParser\TestCSCode.cs" />
82
 
    <Compile Include="CSharpParser\TestCSParser.cs" />
83
 
    <Compile Include="CSharpParser\TestLexer.cs" />
84
 
    <Compile Include="CSharpParser\TestToken.cs" />
85
 
    <Compile Include="CSharpParser\TestTokenClassifier.cs" />
86
 
    <Compile Include="CSharpParser\TestTokenDictionary.cs" />
87
 
    <EmbeddedResource Include="data\Basic.cs" />
88
 
    <Compile Include="data\TestResource.cs" />
89
 
    <Compile Include="StackTraceAnalysers\TestFunctionParser.cs" />
90
 
    <Compile Include="StackTraceAnalysers\TestIErrorParser.cs" />
91
 
    <Compile Include="StackTraceAnalysers\TestLineNumberParser.cs" />
92
 
    <Compile Include="StackTraceAnalysers\TestPathParser.cs" />
93
 
    <Compile Include="StackTraceAnalysers\TestUnixPathParser.cs" />
94
 
    <Compile Include="StackTraceAnalysers\TestWindowsPathParser.cs" />
95
 
    <Compile Include="TestDefaultTextManager.cs" />
96
 
    <Compile Include="TestExceptionItem.cs" />
97
 
    <Compile Include="TestExceptionItemCollection.cs" />
98
 
    <Compile Include="TestPaintLineLocation.cs" />
99
 
    <Compile Include="TestStackTraceParser.cs" />
100
 
  </ItemGroup>
101
 
  <ItemGroup>
102
 
    <EmbeddedResource Include="data\HelloWorld.txt" />
103
 
    <EmbeddedResource Include="data\TextCode.txt" />
104
 
  </ItemGroup>
105
 
  <ItemGroup>
106
 
    <None Include="nunit.uiexception.tests.build" />
107
 
  </ItemGroup>
108
 
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
109
 
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
110
 
       Other similar extension points exist, see Microsoft.Common.targets.
111
 
  <Target Name="BeforeBuild">
112
 
  </Target>
113
 
  <Target Name="AfterBuild">
114
 
  </Target>
115
 
  -->
116
 
</Project>
 
 
b'\\ No newline at end of file'
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 
3
  <PropertyGroup>
 
4
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
 
5
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
 
6
    <ProductVersion>9.0.30729</ProductVersion>
 
7
    <SchemaVersion>2.0</SchemaVersion>
 
8
    <ProjectGuid>{092486D0-6AB9-4134-932F-0FDA10704455}</ProjectGuid>
 
9
    <OutputType>Library</OutputType>
 
10
    <RootNamespace>NUnit.UiException.Tests</RootNamespace>
 
11
    <AssemblyName>nunit.uiexception.tests</AssemblyName>
 
12
    <FileAlignment>512</FileAlignment>
 
13
    <FileUpgradeFlags>
 
14
    </FileUpgradeFlags>
 
15
    <OldToolsVersion>3.5</OldToolsVersion>
 
16
    <UpgradeBackupLocation />
 
17
    <TargetFrameworkProfile />
 
18
    <PublishUrl>publish\</PublishUrl>
 
19
    <Install>true</Install>
 
20
    <InstallFrom>Disk</InstallFrom>
 
21
    <UpdateEnabled>false</UpdateEnabled>
 
22
    <UpdateMode>Foreground</UpdateMode>
 
23
    <UpdateInterval>7</UpdateInterval>
 
24
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
 
25
    <UpdatePeriodically>false</UpdatePeriodically>
 
26
    <UpdateRequired>false</UpdateRequired>
 
27
    <MapFileExtensions>true</MapFileExtensions>
 
28
    <ApplicationRevision>0</ApplicationRevision>
 
29
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
 
30
    <IsWebBootstrapper>false</IsWebBootstrapper>
 
31
    <UseApplicationTrust>false</UseApplicationTrust>
 
32
    <BootstrapperEnabled>true</BootstrapperEnabled>
 
33
  </PropertyGroup>
 
34
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
 
35
    <DebugSymbols>true</DebugSymbols>
 
36
    <DebugType>full</DebugType>
 
37
    <Optimize>false</Optimize>
 
38
    <OutputPath>..\..\..\bin\Debug\tests\</OutputPath>
 
39
    <DefineConstants>TRACE;DEBUG;CLR_2_0,NET_3_5,CS_3_0</DefineConstants>
 
40
    <ErrorReport>prompt</ErrorReport>
 
41
    <WarningLevel>4</WarningLevel>
 
42
    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
 
43
  </PropertyGroup>
 
44
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
 
45
    <DebugType>pdbonly</DebugType>
 
46
    <Optimize>true</Optimize>
 
47
    <OutputPath>..\..\..\bin\Release\tests\</OutputPath>
 
48
    <DefineConstants>TRACE;CLR_2_0,NET_3_5,CS_3_0</DefineConstants>
 
49
    <ErrorReport>prompt</ErrorReport>
 
50
    <WarningLevel>4</WarningLevel>
 
51
    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
 
52
  </PropertyGroup>
 
53
  <ItemGroup>
 
54
    <Reference Include="System" />
 
55
    <Reference Include="System.Core">
 
56
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 
57
    </Reference>
 
58
    <Reference Include="System.Data" />
 
59
    <Reference Include="System.Drawing" />
 
60
    <Reference Include="System.Windows.Forms" />
 
61
    <Reference Include="System.Xml" />
 
62
    <Reference Include="NSubstitute">
 
63
      <HintPath>..\..\..\lib\3.5\NSubstitute.dll</HintPath>
 
64
    </Reference>
 
65
  </ItemGroup>
 
66
  <ItemGroup>
 
67
    <ProjectReference Include="..\..\NUnitFramework\framework\nunit.framework.dll.csproj">
 
68
      <Project>{83DD7E12-A705-4DBA-9D71-09C8973D9382}</Project>
 
69
      <Name>nunit.framework.dll</Name>
 
70
    </ProjectReference>
 
71
    <ProjectReference Include="..\..\tests\test-utilities\test-utilities.csproj">
 
72
      <Project>{3E63AD0F-24D4-46BE-BEE4-5A3299847D86}</Project>
 
73
      <Name>test-utilities</Name>
 
74
    </ProjectReference>
 
75
    <ProjectReference Include="..\UiException\nunit.uiexception.dll.csproj">
 
76
      <Project>{3E87A106-EB20-4147-84C8-95B0BB43A1D4}</Project>
 
77
      <Name>nunit.uiexception.dll</Name>
 
78
    </ProjectReference>
 
79
  </ItemGroup>
 
80
  <ItemGroup>
 
81
    <Compile Include="..\..\CommonAssemblyInfo.cs">
 
82
      <Link>CommonAssemblyInfo.cs</Link>
 
83
    </Compile>
 
84
    <Compile Include="CodeFormatters\TestCodeFormatterCollection.cs" />
 
85
    <Compile Include="CodeFormatters\TestGeneralCodeFormatter.cs" />
 
86
    <Compile Include="CodeFormatters\TestPlainTextCodeFormatter.cs" />
 
87
    <Compile Include="Controls\TestCodeBox.cs" />
 
88
    <Compile Include="Controls\TestCodeRenderingContext.cs" />
 
89
    <Compile Include="Controls\TestDefaultCodeRenderer.cs" />
 
90
    <Compile Include="Controls\TestDefaultErrorListRenderer.cs" />
 
91
    <Compile Include="Controls\TestErrorBrowser.cs" />
 
92
    <Compile Include="Controls\TestErrorList.cs" />
 
93
    <Compile Include="Controls\TestErrorPanelLayout.cs" />
 
94
    <Compile Include="Controls\TestErrorToolbar.cs" />
 
95
    <Compile Include="Controls\TestSourceCodeDisplay.cs" />
 
96
    <Compile Include="Controls\TestSplitterBox.cs" />
 
97
    <Compile Include="Controls\TestStackTraceDisplay.cs" />
 
98
    <Compile Include="CSharpParser\TestCSCode.cs" />
 
99
    <Compile Include="CSharpParser\TestCSParser.cs" />
 
100
    <Compile Include="CSharpParser\TestLexer.cs" />
 
101
    <Compile Include="CSharpParser\TestToken.cs" />
 
102
    <Compile Include="CSharpParser\TestTokenClassifier.cs" />
 
103
    <Compile Include="CSharpParser\TestTokenDictionary.cs" />
 
104
    <EmbeddedResource Include="data\Basic.cs" />
 
105
    <Compile Include="data\TestResource.cs" />
 
106
    <Compile Include="StackTraceAnalysers\TestFunctionParser.cs" />
 
107
    <Compile Include="StackTraceAnalysers\TestIErrorParser.cs" />
 
108
    <Compile Include="StackTraceAnalysers\TestLineNumberParser.cs" />
 
109
    <Compile Include="StackTraceAnalysers\TestPathParser.cs" />
 
110
    <Compile Include="StackTraceAnalysers\TestUnixPathParser.cs" />
 
111
    <Compile Include="StackTraceAnalysers\TestWindowsPathParser.cs" />
 
112
    <Compile Include="TestDefaultTextManager.cs" />
 
113
    <Compile Include="TestExceptionItem.cs" />
 
114
    <Compile Include="TestExceptionItemCollection.cs" />
 
115
    <Compile Include="TestPaintLineLocation.cs" />
 
116
    <Compile Include="TestStackTraceParser.cs" />
 
117
  </ItemGroup>
 
118
  <ItemGroup>
 
119
    <EmbeddedResource Include="data\HelloWorld.txt" />
 
120
    <EmbeddedResource Include="data\TextCode.txt" />
 
121
  </ItemGroup>
 
122
  <ItemGroup>
 
123
    <None Include="nunit.uiexception.tests.build" />
 
124
  </ItemGroup>
 
125
  <ItemGroup>
 
126
    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
 
127
      <Visible>False</Visible>
 
128
      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
 
129
      <Install>false</Install>
 
130
    </BootstrapperPackage>
 
131
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
 
132
      <Visible>False</Visible>
 
133
      <ProductName>.NET Framework 3.5 SP1</ProductName>
 
134
      <Install>true</Install>
 
135
    </BootstrapperPackage>
 
136
    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
 
137
      <Visible>False</Visible>
 
138
      <ProductName>Windows Installer 3.1</ProductName>
 
139
      <Install>true</Install>
 
140
    </BootstrapperPackage>
 
141
  </ItemGroup>
 
142
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
 
143
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
 
144
       Other similar extension points exist, see Microsoft.Common.targets.
 
145
  <Target Name="BeforeBuild">
 
146
  </Target>
 
147
  <Target Name="AfterBuild">
 
148
  </Target>
 
149
  -->
 
150
</Project>