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

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Pobst <jonathan.pobst@microsoft.com>2021-02-09 23:49:34 +0300
committerJonathan Pobst <jonathan.pobst@microsoft.com>2021-02-09 23:49:34 +0300
commit545c911c02dcde6d2082d3dc7b25febcfc44049b (patch)
treea5f418606090ecb726b8e8759a0c07357412f4a5
parent6e6c4643649496a6bd6868d230c231031b0b6b5c (diff)
Convert csproj files to SDK style.
-rw-r--r--Mono.Debugger.Soft/Mono.Debugger.Soft.csproj120
-rw-r--r--Mono.Debugging.Soft/AssemblyInfo.cs29
-rw-r--r--Mono.Debugging.Soft/Mono.Debugging.Soft.csproj83
-rw-r--r--Mono.Debugging/Mono.Debugging.csproj156
4 files changed, 40 insertions, 348 deletions
diff --git a/Mono.Debugger.Soft/Mono.Debugger.Soft.csproj b/Mono.Debugger.Soft/Mono.Debugger.Soft.csproj
index 9d138e8..c379fe5 100644
--- a/Mono.Debugger.Soft/Mono.Debugger.Soft.csproj
+++ b/Mono.Debugger.Soft/Mono.Debugger.Soft.csproj
@@ -1,133 +1,31 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+<Project Sdk="Microsoft.NET.Sdk">
+
<PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>9.0.21022</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{372E8E3E-29D5-4B4D-88A2-4711CD628C4E}</ProjectGuid>
- <OutputType>Library</OutputType>
- <RootNamespace>Mono.Debugger.Soft</RootNamespace>
- <AssemblyName>Mono.Debugger.Soft</AssemblyName>
+ <TargetFramework>net472</TargetFramework>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>mono.snk</AssemblyOriginatorKeyFile>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>True</DebugSymbols>
- <DebugType>embedded</DebugType>
- <Optimize>False</Optimize>
- <OutputPath>bin\Debug</OutputPath>
<DefineConstants>MONO_DATACONVERTER_STATIC_METHODS;ENABLE_CECIL</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>False</ConsolePause>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>embedded</DebugType>
- <Optimize>True</Optimize>
- <OutputPath>bin\Release</OutputPath>
- <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
- <DefineConstants>MONO_DATACONVERTER_STATIC_METHODS;ENABLE_CECIL</DefineConstants>
- <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
+
<Import Project="..\Mono.Debugging.settings" />
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <ItemGroup>
- <Compile Include="Mono.Debugger.Soft\AbsentInformationException.cs" />
- <Compile Include="Mono.Debugger.Soft\AppDomainCreateEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\AppDomainMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\AppDomainUnloadEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\ArrayMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\AssemblyLoadEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\AssemblyMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\AssemblyUnloadEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\BreakpointEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\BreakpointEventRequest.cs" />
- <Compile Include="Mono.Debugger.Soft\Connection.cs" />
- <Compile Include="Mono.Debugger.Soft\CrashEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\CustomAttributeDataMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\CustomAttributeNamedArgumentMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\CustomAttributeTypedArgumentMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\DataConverter.cs" />
- <Compile Include="Mono.Debugger.Soft\EnumMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\Event.cs" />
- <Compile Include="Mono.Debugger.Soft\EventQueueImpl.cs" />
- <Compile Include="Mono.Debugger.Soft\EventRequest.cs" />
- <Compile Include="Mono.Debugger.Soft\EventSet.cs" />
- <Compile Include="Mono.Debugger.Soft\EventType.cs" />
- <Compile Include="Mono.Debugger.Soft\ExceptionEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\ExceptionEventRequest.cs" />
- <Compile Include="Mono.Debugger.Soft\FieldInfoMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\IInvokeAsyncResult.cs" />
- <Compile Include="Mono.Debugger.Soft\ILExceptionHandler.cs" />
- <Compile Include="Mono.Debugger.Soft\ILInstruction.cs" />
- <Compile Include="Mono.Debugger.Soft\ILInterpreter.cs" />
- <Compile Include="Mono.Debugger.Soft\IMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\InterfaceMappingMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\InvalidStackFrameException.cs" />
- <Compile Include="Mono.Debugger.Soft\InvocationException.cs" />
- <Compile Include="Mono.Debugger.Soft\InvokeOptions.cs" />
- <Compile Include="Mono.Debugger.Soft\ITargetProcess.cs" />
- <Compile Include="Mono.Debugger.Soft\LocalVariable.cs" />
- <Compile Include="Mono.Debugger.Soft\Location.cs" />
- <Compile Include="Mono.Debugger.Soft\MethodBodyMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\MethodEntryEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\MethodEntryEventRequest.cs" />
- <Compile Include="Mono.Debugger.Soft\MethodExitEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\MethodExitEventRequest.cs" />
- <Compile Include="Mono.Debugger.Soft\MethodMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\Mirror.cs" />
- <Compile Include="Mono.Debugger.Soft\ModuleMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\ObjectCollectedException.cs" />
- <Compile Include="Mono.Debugger.Soft\ObjectMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\ParameterInfoMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\PrimitiveValue.cs" />
- <Compile Include="Mono.Debugger.Soft\PropertyInfoMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\StackFrame.cs" />
- <Compile Include="Mono.Debugger.Soft\StepEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\StepEventRequest.cs" />
- <Compile Include="Mono.Debugger.Soft\StringMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\StructMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\SuspendPolicy.cs" />
- <Compile Include="Mono.Debugger.Soft\ThreadDeathEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\ThreadMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\ThreadStartEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\TypeLoadEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\TypeLoadEventRequest.cs" />
- <Compile Include="Mono.Debugger.Soft\TypeMirror.cs" />
- <Compile Include="Mono.Debugger.Soft\UserBreakEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\UserLogEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\Value.cs" />
- <Compile Include="Mono.Debugger.Soft\VirtualMachine.cs" />
- <Compile Include="Mono.Debugger.Soft\VirtualMachineManager.cs" />
- <Compile Include="Mono.Debugger.Soft\VMDeathEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\VMDisconnectedException.cs" />
- <Compile Include="Mono.Debugger.Soft\VMDisconnectEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\VMMismatchException.cs" />
- <Compile Include="Mono.Debugger.Soft\VMStartEvent.cs" />
- <Compile Include="Mono.Debugger.Soft\AssemblyLoadEventRequest.cs" />
- <Compile Include="Locale.cs" />
- <Compile Include="Mono.Debugger.Soft\PointerValue.cs" />
- <Compile Include="Mono.Debugger.Soft\LocalScope.cs" />
- <Compile Include="Mono.Debugger.Soft\DelayedLambdaValue.cs" />
- <Compile Include="Mono.Debugger.Soft\DelayedLambdaType.cs" />
- </ItemGroup>
+
<ItemGroup>
<None Include="Makefile.am" />
<None Include="mono-git-revision" />
</ItemGroup>
+
<PropertyGroup>
<NuGetVersionCecil Condition="$(NuGetVersionCecil) == ''">0.10.1</NuGetVersionCecil>
</PropertyGroup>
+
<ItemGroup>
<PackageReference Include="Mono.Cecil" Version="$(NuGetVersionCecil)" PrivateAssets="all" />
+ <PackageReference Include="System.Runtime" Version="4.3.1" />
</ItemGroup>
- <ItemGroup>
- <Reference Include="System.Core" />
- <Reference Include="System" />
- </ItemGroup>
+
</Project>
diff --git a/Mono.Debugging.Soft/AssemblyInfo.cs b/Mono.Debugging.Soft/AssemblyInfo.cs
deleted file mode 100644
index d70591c..0000000
--- a/Mono.Debugging.Soft/AssemblyInfo.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// AssemblyInfo.cs
-//
-// Author:
-// Michael Hutchinson <mhutchinson@novell.com>
-//
-// Copyright (c) 2010 Novell, Inc. (http://www.novell.com)
-//
-// Permission is hereby granted, free of charge, to any person obtaining a copy
-// of this software and associated documentation files (the "Software"), to deal
-// in the Software without restriction, including without limitation the rights
-// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-// copies of the Software, and to permit persons to whom the Software is
-// furnished to do so, subject to the following conditions:
-//
-// The above copyright notice and this permission notice shall be included in
-// all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-// THE SOFTWARE.
-using System.Reflection;
-using System.Runtime.CompilerServices;
-
-[assembly: AssemblyTitle("Mono.Debugging.Soft")] \ No newline at end of file
diff --git a/Mono.Debugging.Soft/Mono.Debugging.Soft.csproj b/Mono.Debugging.Soft/Mono.Debugging.Soft.csproj
index 7feb2d2..136dd1f 100644
--- a/Mono.Debugging.Soft/Mono.Debugging.Soft.csproj
+++ b/Mono.Debugging.Soft/Mono.Debugging.Soft.csproj
@@ -1,92 +1,41 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+<Project Sdk="Microsoft.NET.Sdk">
+
<PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{DE40756E-57F6-4AF2-B155-55E3A88CCED8}</ProjectGuid>
- <OutputType>Library</OutputType>
- <RootNamespace>Mono.Debugging.Soft</RootNamespace>
- <AssemblyName>Mono.Debugging.Soft</AssemblyName>
+ <TargetFramework>net472</TargetFramework>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\Mono.Debugging\mono.debugging.snk</AssemblyOriginatorKeyFile>
- <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>True</DebugSymbols>
- <DebugType>embedded</DebugType>
- <Optimize>False</Optimize>
- <OutputPath>bin\Debug</OutputPath>
- <DefineConstants>DEBUG</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
<NoWarn>1591;1573</NoWarn>
- <DocumentationFile>bin\Debug\Mono.Debugging.Soft.xml</DocumentationFile>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DocumentationFile>bin\$(Configuration)\Mono.Debugging.Soft.xml</DocumentationFile>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>embedded</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <DebugSymbols>true</DebugSymbols>
- <NoWarn>1591;1573</NoWarn>
- <DocumentationFile>bin\Release\Mono.Debugging.Soft.xml</DocumentationFile>
</PropertyGroup>
+
+ <Import Project="..\Mono.Debugging.settings" />
+
<ItemGroup>
- <ProjectReference Include="..\Mono.Debugging\Mono.Debugging.csproj">
- <Project>{90C99ADB-7D4B-4EB4-98C2-40BD1B14C7D2}</Project>
- <Name>Mono.Debugging</Name>
- <Private>False</Private>
- </ProjectReference>
- <ProjectReference Include="..\Mono.Debugger.Soft\Mono.Debugger.Soft.csproj">
- <Project>{372E8E3E-29D5-4B4D-88A2-4711CD628C4E}</Project>
- <Name>Mono.Debugger.Soft</Name>
- <Private>False</Private>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="ArrayAdaptor.cs" />
- <Compile Include="FieldValueReference.cs" />
- <Compile Include="InstructionBreakpoint.cs" />
- <Compile Include="PropertyValueReference.cs" />
- <Compile Include="SoftDebuggerSession.cs" />
- <Compile Include="VariableValueReference.cs" />
- <Compile Include="SoftEvaluationContext.cs" />
- <Compile Include="SoftDebuggerAdaptor.cs" />
- <Compile Include="SoftDebuggerBacktrace.cs" />
- <Compile Include="SoftDebuggerStartInfo.cs" />
- <Compile Include="AssemblyInfo.cs" />
- <Compile Include="StringAdaptor.cs" />
- <Compile Include="SoftValueReference.cs" />
- <Compile Include="LocalVariableBatch.cs" />
- <Compile Include="ThisValueReference.cs" />
- <Compile Include="FieldReferenceBatch.cs" />
- <Compile Include="PortablePdbData.cs" />
- <Compile Include="SourceLinkMap.cs" />
- <Compile Include="JsonSourceLink.cs" />
- <Compile Include="Subprocess.cs" />
+ <ProjectReference Include="..\Mono.Debugging\Mono.Debugging.csproj" />
+ <ProjectReference Include="..\Mono.Debugger.Soft\Mono.Debugger.Soft.csproj" />
</ItemGroup>
+
<PropertyGroup>
<NuGetVersionRoslyn Condition="$(NuGetVersionRoslyn) == ''">2.10.0</NuGetVersionRoslyn>
<NuGetVersionCecil Condition="$(NuGetVersionCecil) == ''">0.10.1</NuGetVersionCecil>
</PropertyGroup>
+
<ItemGroup>
<PackageReference Include="Mono.Cecil" Version="$(NuGetVersionCecil)" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="$(NuGetVersionRoslyn)" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="$(NuGetVersionRoslyn)" PrivateAssets="all" />
- <PackageReference Include="Newtonsoft.Json">
- <Version>10.0.3</Version>
- </PackageReference>
+ <PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
</ItemGroup>
+
<ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Core" />
<Reference Condition=" '$(OS)' != 'Windows_NT' " Include="Mono.Posix" />
<PackageReference Condition=" '$(OS)' == 'Windows_NT' " Include="Mono.Posix-4.5" Version="4.5.0" />
</ItemGroup>
- <Import Project="..\Mono.Debugging.settings" />
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
+
<ItemGroup>
<None Include="Makefile.am" />
</ItemGroup>
+
</Project>
diff --git a/Mono.Debugging/Mono.Debugging.csproj b/Mono.Debugging/Mono.Debugging.csproj
index f633505..3cb4ca6 100644
--- a/Mono.Debugging/Mono.Debugging.csproj
+++ b/Mono.Debugging/Mono.Debugging.csproj
@@ -1,154 +1,28 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
+<Project Sdk="Microsoft.NET.Sdk">
+
<PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>8.0.30703</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{90C99ADB-7D4B-4EB4-98C2-40BD1B14C7D2}</ProjectGuid>
- <OutputType>Library</OutputType>
- <RootNamespace>Mono.Debugging</RootNamespace>
+ <TargetFramework>net472</TargetFramework>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>mono.debugging.snk</AssemblyOriginatorKeyFile>
- <AssemblyName>Mono.Debugging</AssemblyName>
- <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>True</DebugSymbols>
- <DebugType>embedded</DebugType>
- <Optimize>False</Optimize>
- <OutputPath>bin\Debug</OutputPath>
- <DefineConstants>DEBUG</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>False</ConsolePause>
- <Execution>
- <Execution clr-version="Net_2_0" />
- </Execution>
<NoWarn>1591;1573</NoWarn>
- <DocumentationFile>bin\Debug\Mono.Debugging.xml</DocumentationFile>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>embedded</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>False</ConsolePause>
<Execution>
<Execution clr-version="Net_2_0" />
</Execution>
- <DebugSymbols>true</DebugSymbols>
- <NoWarn>1591;1573</NoWarn>
- <DocumentationFile>bin\Release\Mono.Debugging.xml</DocumentationFile>
+ <DocumentationFile>bin\$(Configuration)\Mono.Debugging.xml</DocumentationFile>
+ <DebugSymbols>True</DebugSymbols>
+ <DebugType>embedded</DebugType>
</PropertyGroup>
+
+ <Import Project="..\Mono.Debugging.settings" />
+
<ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Xml" />
- <Reference Include="System.Core" />
- <Reference Include="mscorlib" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\nrefactory\ICSharpCode.NRefactory\ICSharpCode.NRefactory.csproj">
- <Project>{3B2A5653-EC97-4001-BB9B-D90F1AF2C371}</Project>
- <Name>ICSharpCode.NRefactory</Name>
- </ProjectReference>
- <ProjectReference Include="..\..\nrefactory\ICSharpCode.NRefactory.CSharp\ICSharpCode.NRefactory.CSharp.csproj">
- <Project>{53DCA265-3C3C-42F9-B647-F72BA678122B}</Project>
- <Name>ICSharpCode.NRefactory.CSharp</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Mono.Debugging.Client\IExpressionEvaluator.cs" />
- <Compile Include="Mono.Debugging.Client\Breakpoint.cs" />
- <Compile Include="Mono.Debugging.Client\DebuggerSession.cs" />
- <Compile Include="Mono.Debugging.Client\Backtrace.cs" />
- <Compile Include="Mono.Debugging.Client\DebuggerStartInfo.cs" />
- <Compile Include="Mono.Debugging.Client\OutputOptions.cs" />
- <Compile Include="Mono.Debugging.Client\ProcessEventArgs.cs" />
- <Compile Include="Mono.Debugging.Client\SourceLocation.cs" />
- <Compile Include="Mono.Debugging.Client\StackFrame.cs" />
- <Compile Include="Mono.Debugging.Client\TargetEventArgs.cs" />
- <Compile Include="Mono.Debugging.Client\TargetEventType.cs" />
- <Compile Include="Mono.Debugging.Client\ThreadEventArgs.cs" />
- <Compile Include="Mono.Debugging.Backend\IBacktrace.cs" />
- <Compile Include="Mono.Debugging.Backend\IDebuggerSessionFrontend.cs" />
- <Compile Include="Mono.Debugging.Client\BreakpointStore.cs" />
- <Compile Include="Mono.Debugging.Client\BreakpointEventArgs.cs" />
- <Compile Include="Mono.Debugging.Client\ObjectValue.cs" />
- <Compile Include="Mono.Debugging.Backend\IObjectValueSource.cs" />
- <Compile Include="Mono.Debugging.Client\ObjectValueFlags.cs" />
- <Compile Include="Mono.Debugging.Client\ObjectPath.cs" />
- <Compile Include="Mono.Debugging.Client\ThreadInfo.cs" />
- <Compile Include="Mono.Debugging.Client\ProcessInfo.cs" />
- <Compile Include="Mono.Debugging.Client\AssemblyLine.cs" />
- <Compile Include="Mono.Debugging.Backend\DissassemblyBuffer.cs" />
- <Compile Include="Mono.Debugging.Client\CompletionData.cs" />
- <Compile Include="Mono.Debugging.Client\Catchpoint.cs" />
- <Compile Include="Mono.Debugging.Client\BreakEvent.cs" />
- <Compile Include="Mono.Debugging.Client\CatchpointEventArgs.cs" />
- <Compile Include="Mono.Debugging.Client\BreakEventArgs.cs" />
- <Compile Include="Mono.Debugging.Client\DebuggerFeatures.cs" />
- <Compile Include="Mono.Debugging.Backend\IObjectValueUpdater.cs" />
- <Compile Include="Mono.Debugging.Backend\IObjectValueUpdateCallback.cs" />
- <Compile Include="Mono.Debugging.Backend\UpdateCallback.cs" />
- <Compile Include="Mono.Debugging.Evaluation\ArrayElementGroup.cs" />
- <Compile Include="Mono.Debugging.Evaluation\ArrayValueReference.cs" />
- <Compile Include="Mono.Debugging.Evaluation\AsyncEvaluationTracker.cs" />
- <Compile Include="Mono.Debugging.Evaluation\AsyncOperationManager.cs" />
- <Compile Include="Mono.Debugging.Evaluation\EvaluationContext.cs" />
- <Compile Include="Mono.Debugging.Evaluation\ExpressionEvaluator.cs" />
- <Compile Include="Mono.Debugging.Evaluation\FilteredMembersSource.cs" />
- <Compile Include="Mono.Debugging.Evaluation\ICollectionAdaptor.cs" />
- <Compile Include="Mono.Debugging.Evaluation\LiteralValueReference.cs" />
- <Compile Include="Mono.Debugging.Evaluation\NamespaceValueReference.cs" />
- <Compile Include="Mono.Debugging.Evaluation\NullValueReference.cs" />
- <Compile Include="Mono.Debugging.Evaluation\ObjectValueAdaptor.cs" />
- <Compile Include="Mono.Debugging.Evaluation\RawViewSource.cs" />
- <Compile Include="Mono.Debugging.Evaluation\RemoteFrameObject.cs" />
- <Compile Include="Mono.Debugging.Evaluation\TimedEvaluator.cs" />
- <Compile Include="Mono.Debugging.Evaluation\TimeOutException.cs" />
- <Compile Include="Mono.Debugging.Evaluation\TypeValueReference.cs" />
- <Compile Include="Mono.Debugging.Evaluation\ValueReference.cs" />
- <Compile Include="Mono.Debugging.Evaluation\UserVariableReference.cs" />
- <Compile Include="Mono.Debugging.Client\DebuggerException.cs" />
- <Compile Include="Mono.Debugging.Client\DebuggerSessionOptions.cs" />
- <Compile Include="Mono.Debugging.Client\EvaluationOptions.cs" />
- <Compile Include="Mono.Debugging.Evaluation\BaseBacktrace.cs" />
- <Compile Include="Mono.Debugging.Evaluation\BaseTypeViewSource.cs" />
- <Compile Include="Mono.Debugging.Evaluation\IObjectSource.cs" />
- <Compile Include="Mono.Debugging.Client\RawValue.cs" />
- <Compile Include="Mono.Debugging.Evaluation\RemoteRawValue.cs" />
- <Compile Include="Mono.Debugging.Client\ExceptionInfo.cs" />
- <Compile Include="Mono.Debugging.Evaluation\ExceptionInfoSource.cs" />
- <Compile Include="Mono.Debugging.Client\BreakEventStatus.cs" />
- <Compile Include="Mono.Debugging.Client\BreakEventInfo.cs" />
- <Compile Include="Mono.Debugging.Client\FunctionBreakpoint.cs" />
- <Compile Include="Mono.Debugging.Evaluation\IStringAdaptor.cs" />
- <Compile Include="Mono.Debugging.Evaluation\NRefactoryExpressionEvaluator.cs" />
- <Compile Include="Mono.Debugging.Evaluation\NRefactoryExpressionEvaluatorVisitor.cs" />
- <Compile Include="Mono.Debugging.Evaluation\NRefactoryExpressionResolverVisitor.cs" />
- <Compile Include="Mono.Debugging.Evaluation\NRefactoryExtensions.cs" />
- <Compile Include="Mono.Debugging.Backend\IDebuggerBackendObject.cs" />
- <Compile Include="Mono.Debugging.Backend\IRawValue.cs" />
- <Compile Include="Mono.Debugging.Backend\IRawValueArray.cs" />
- <Compile Include="Mono.Debugging.Backend\IRawValueString.cs" />
- <Compile Include="Mono.Debugging.Backend\EvaluationResult.cs" />
- <Compile Include="Mono.Debugging.Client\DebuggerLoggingService.cs" />
- <Compile Include="Mono.Debugging.Client\RunToCursorBreakpoint.cs" />
- <Compile Include="Mono.Debugging.Evaluation\EnumerableElementGroup.cs" />
- <Compile Include="Mono.Debugging.Client\AssemblyEventArgs.cs" />
- <Compile Include="Mono.Debugging.Evaluation\LambdaBodyOutputVisitor.cs" />
- <Compile Include="Mono.Debugging.Client\SourceLink.cs" />
- <Compile Include="Mono.Debugging.Client\DebuggerStatistics.cs" />
- <Compile Include="Mono.Debugging.Client\UsageCounter.cs" />
+ <ProjectReference Include="..\..\nrefactory\ICSharpCode.NRefactory\ICSharpCode.NRefactory.csproj" />
+ <ProjectReference Include="..\..\nrefactory\ICSharpCode.NRefactory.CSharp\ICSharpCode.NRefactory.CSharp.csproj" />
</ItemGroup>
+
<ItemGroup>
<PackageReference Include="System.Buffers" Version="4.5.0" />
- <PackageReference Include="System.Collections.Immutable">
- <Version>1.5.0</Version>
- </PackageReference>
+ <PackageReference Include="System.Collections.Immutable" Version="1.5.0" />
</ItemGroup>
- <Import Project="..\Mono.Debugging.settings" />
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
-</Project> \ No newline at end of file
+
+</Project>