~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/core/Mono.Debugging/Mono.Debugging.csproj

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

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" ToolsVersion="4.0">
 
3
  <PropertyGroup>
 
4
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
 
5
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
 
6
    <ProductVersion>9.0.21022</ProductVersion>
 
7
    <SchemaVersion>2.0</SchemaVersion>
 
8
    <ProjectGuid>{90C99ADB-7D4B-4EB4-98C2-40BD1B14C7D2}</ProjectGuid>
 
9
    <OutputType>Library</OutputType>
 
10
    <RootNamespace>Mono.Debugging</RootNamespace>
 
11
    <SignAssembly>True</SignAssembly>
 
12
    <AssemblyOriginatorKeyFile>mono.debugging.snk</AssemblyOriginatorKeyFile>
 
13
    <AssemblyName>Mono.Debugging</AssemblyName>
 
14
  </PropertyGroup>
 
15
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
 
16
    <DebugSymbols>True</DebugSymbols>
 
17
    <DebugType>full</DebugType>
 
18
    <Optimize>False</Optimize>
 
19
    <OutputPath>..\..\..\build\bin</OutputPath>
 
20
    <DefineConstants>DEBUG</DefineConstants>
 
21
    <ErrorReport>prompt</ErrorReport>
 
22
    <WarningLevel>4</WarningLevel>
 
23
    <ConsolePause>False</ConsolePause>
 
24
    <Execution>
 
25
      <Execution clr-version="Net_2_0" />
 
26
    </Execution>
 
27
  </PropertyGroup>
 
28
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
 
29
    <DebugType>none</DebugType>
 
30
    <Optimize>False</Optimize>
 
31
    <OutputPath>..\..\..\build\bin</OutputPath>
 
32
    <ErrorReport>prompt</ErrorReport>
 
33
    <WarningLevel>4</WarningLevel>
 
34
    <ConsolePause>False</ConsolePause>
 
35
    <Execution>
 
36
      <Execution clr-version="Net_2_0" />
 
37
    </Execution>
 
38
  </PropertyGroup>
 
39
  <ItemGroup>
 
40
    <Reference Include="System" />
 
41
    <Reference Include="System.Xml" />
 
42
    <Reference Include="System.Core" />
 
43
  </ItemGroup>
 
44
  <ItemGroup>
 
45
    <Compile Include="Mono.Debugging.Client\IExpressionEvaluator.cs" />
 
46
    <Compile Include="Mono.Debugging.Client\Breakpoint.cs" />
 
47
    <Compile Include="Mono.Debugging.Client\DebuggerSession.cs" />
 
48
    <Compile Include="Mono.Debugging.Client\Backtrace.cs" />
 
49
    <Compile Include="Mono.Debugging.Client\DebuggerStartInfo.cs" />
 
50
    <Compile Include="Mono.Debugging.Client\ProcessEventArgs.cs" />
 
51
    <Compile Include="Mono.Debugging.Client\SourceLocation.cs" />
 
52
    <Compile Include="Mono.Debugging.Client\StackFrame.cs" />
 
53
    <Compile Include="Mono.Debugging.Client\TargetEventArgs.cs" />
 
54
    <Compile Include="Mono.Debugging.Client\TargetEventType.cs" />
 
55
    <Compile Include="Mono.Debugging.Client\ThreadEventArgs.cs" />
 
56
    <Compile Include="Mono.Debugging.Backend\IBacktrace.cs" />
 
57
    <Compile Include="Mono.Debugging.Backend\IDebuggerSessionFrontend.cs" />
 
58
    <Compile Include="Mono.Debugging.Client\BreakpointStore.cs" />
 
59
    <Compile Include="Mono.Debugging.Client\BreakpointEventArgs.cs" />
 
60
    <Compile Include="Mono.Debugging.Client\ObjectValue.cs" />
 
61
    <Compile Include="Mono.Debugging.Backend\IObjectValueSource.cs" />
 
62
    <Compile Include="Mono.Debugging.Client\ObjectValueFlags.cs" />
 
63
    <Compile Include="Mono.Debugging.Client\ObjectPath.cs" />
 
64
    <Compile Include="Mono.Debugging.Client\ThreadInfo.cs" />
 
65
    <Compile Include="Mono.Debugging.Client\ProcessInfo.cs" />
 
66
    <Compile Include="Mono.Debugging.Client\AssemblyLine.cs" />
 
67
    <Compile Include="Mono.Debugging.Backend\DissassemblyBuffer.cs" />
 
68
    <Compile Include="Mono.Debugging.Client\CompletionData.cs" />
 
69
    <Compile Include="Mono.Debugging.Client\Catchpoint.cs" />
 
70
    <Compile Include="Mono.Debugging.Client\BreakEvent.cs" />
 
71
    <Compile Include="Mono.Debugging.Client\CatchpointEventArgs.cs" />
 
72
    <Compile Include="Mono.Debugging.Client\BreakEventArgs.cs" />
 
73
    <Compile Include="Mono.Debugging.Client\DebuggerFeatures.cs" />
 
74
    <Compile Include="Mono.Debugging.Backend\IObjectValueUpdater.cs" />
 
75
    <Compile Include="Mono.Debugging.Backend\IObjectValueUpdateCallback.cs" />
 
76
    <Compile Include="Mono.Debugging.Backend\UpdateCallback.cs" />
 
77
    <Compile Include="Mono.Debugging.Evaluation\ArrayElementGroup.cs" />
 
78
    <Compile Include="Mono.Debugging.Evaluation\ArrayValueReference.cs" />
 
79
    <Compile Include="Mono.Debugging.Evaluation\AsyncEvaluationTracker.cs" />
 
80
    <Compile Include="Mono.Debugging.Evaluation\AsyncOperationManager.cs" />
 
81
    <Compile Include="Mono.Debugging.Evaluation\EvaluationContext.cs" />
 
82
    <Compile Include="Mono.Debugging.Evaluation\ExpressionEvaluator.cs" />
 
83
    <Compile Include="Mono.Debugging.Evaluation\FilteredMembersSource.cs" />
 
84
    <Compile Include="Mono.Debugging.Evaluation\ICollectionAdaptor.cs" />
 
85
    <Compile Include="Mono.Debugging.Evaluation\LiteralValueReference.cs" />
 
86
    <Compile Include="Mono.Debugging.Evaluation\NamespaceValueReference.cs" />
 
87
    <Compile Include="Mono.Debugging.Evaluation\NullValueReference.cs" />
 
88
    <Compile Include="Mono.Debugging.Evaluation\ObjectValueAdaptor.cs" />
 
89
    <Compile Include="Mono.Debugging.Evaluation\RawViewSource.cs" />
 
90
    <Compile Include="Mono.Debugging.Evaluation\RemoteFrameObject.cs" />
 
91
    <Compile Include="Mono.Debugging.Evaluation\TimedEvaluator.cs" />
 
92
    <Compile Include="Mono.Debugging.Evaluation\TimeOutException.cs" />
 
93
    <Compile Include="Mono.Debugging.Evaluation\TypeValueReference.cs" />
 
94
    <Compile Include="Mono.Debugging.Evaluation\ValueReference.cs" />
 
95
    <Compile Include="Mono.Debugging.Evaluation\UserVariableReference.cs" />
 
96
    <Compile Include="Mono.Debugging.Client\DebuggerException.cs" />
 
97
    <Compile Include="Mono.Debugging.Client\DebuggerSessionOptions.cs" />
 
98
    <Compile Include="Mono.Debugging.Client\EvaluationOptions.cs" />
 
99
    <Compile Include="Mono.Debugging.Evaluation\BaseBacktrace.cs" />
 
100
    <Compile Include="Mono.Debugging.Evaluation\BaseTypeViewSource.cs" />
 
101
    <Compile Include="Mono.Debugging.Evaluation\IObjectSource.cs" />
 
102
    <Compile Include="Mono.Debugging.Client\RawValue.cs" />
 
103
    <Compile Include="Mono.Debugging.Evaluation\RemoteRawValue.cs" />
 
104
    <Compile Include="Mono.Debugging.Client\ExceptionInfo.cs" />
 
105
    <Compile Include="Mono.Debugging.Evaluation\ExceptionInfoSource.cs" />
 
106
    <Compile Include="Mono.Debugging.Client\BreakEventStatus.cs" />
 
107
    <Compile Include="Mono.Debugging.Client\BreakEventInfo.cs" />
 
108
    <Compile Include="Mono.Debugging.Client\FunctionBreakpoint.cs" />
 
109
    <Compile Include="Mono.Debugging.Evaluation\IStringAdaptor.cs" />
 
110
    <Compile Include="Mono.Debugging.Evaluation\NRefactoryExpressionEvaluator.cs" />
 
111
    <Compile Include="Mono.Debugging.Evaluation\NRefactoryExpressionEvaluatorVisitor.cs" />
 
112
    <Compile Include="Mono.Debugging.Evaluation\NRefactoryExpressionResolverVisitor.cs" />
 
113
    <Compile Include="Mono.Debugging.Evaluation\NRefactoryExtensions.cs" />
 
114
  </ItemGroup>
 
115
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
 
116
  <ItemGroup>
 
117
    <Folder Include="Mono.Debugging.Evaluation\" />
 
118
  </ItemGroup>
 
119
  <ItemGroup>
 
120
    <ProjectReference Include="..\..\..\external\nrefactory\ICSharpCode.NRefactory\ICSharpCode.NRefactory.csproj">
 
121
      <Project>{3B2A5653-EC97-4001-BB9B-D90F1AF2C371}</Project>
 
122
      <Name>ICSharpCode.NRefactory</Name>
 
123
    </ProjectReference>
 
124
    <ProjectReference Include="..\..\..\external\nrefactory\ICSharpCode.NRefactory.CSharp\ICSharpCode.NRefactory.CSharp.csproj">
 
125
      <Project>{53DCA265-3C3C-42F9-B647-F72BA678122B}</Project>
 
126
      <Name>ICSharpCode.NRefactory.CSharp</Name>
 
127
    </ProjectReference>
 
128
  </ItemGroup>
 
129
</Project>