|
1 | | -<?xml version="1.0" encoding="utf-8"?> |
2 | | -<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
3 | 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>{372E8E3E-29D5-4B4D-88A2-4711CD628C4E}</ProjectGuid> |
9 | | - <OutputType>Library</OutputType> |
10 | | - <RootNamespace>Mono.Debugger.Soft</RootNamespace> |
11 | | - <AssemblyName>Mono.Debugger.Soft</AssemblyName> |
| 4 | + <TargetFramework>net472</TargetFramework> |
12 | 5 | <SignAssembly>True</SignAssembly> |
13 | 6 | <AssemblyOriginatorKeyFile>mono.snk</AssemblyOriginatorKeyFile> |
14 | | - </PropertyGroup> |
15 | | - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
16 | | - <DebugSymbols>True</DebugSymbols> |
17 | | - <DebugType>embedded</DebugType> |
18 | | - <Optimize>False</Optimize> |
19 | | - <OutputPath>bin\Debug</OutputPath> |
20 | 7 | <DefineConstants>MONO_DATACONVERTER_STATIC_METHODS;ENABLE_CECIL</DefineConstants> |
21 | | - <ErrorReport>prompt</ErrorReport> |
22 | | - <WarningLevel>4</WarningLevel> |
23 | | - <ConsolePause>False</ConsolePause> |
24 | 8 | <AllowUnsafeBlocks>True</AllowUnsafeBlocks> |
25 | | - </PropertyGroup> |
26 | | - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
27 | 9 | <DebugSymbols>True</DebugSymbols> |
28 | 10 | <DebugType>embedded</DebugType> |
29 | | - <Optimize>True</Optimize> |
30 | | - <OutputPath>bin\Release</OutputPath> |
31 | | - <ErrorReport>prompt</ErrorReport> |
32 | 11 | <WarningLevel>4</WarningLevel> |
33 | 12 | <ConsolePause>False</ConsolePause> |
34 | | - <DefineConstants>MONO_DATACONVERTER_STATIC_METHODS;ENABLE_CECIL</DefineConstants> |
35 | | - <AllowUnsafeBlocks>True</AllowUnsafeBlocks> |
36 | 13 | </PropertyGroup> |
| 14 | + |
37 | 15 | <Import Project="..\Mono.Debugging.settings" /> |
38 | | - <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
39 | | - <ItemGroup> |
40 | | - <Compile Include="Mono.Debugger.Soft\AbsentInformationException.cs" /> |
41 | | - <Compile Include="Mono.Debugger.Soft\AppDomainCreateEvent.cs" /> |
42 | | - <Compile Include="Mono.Debugger.Soft\AppDomainMirror.cs" /> |
43 | | - <Compile Include="Mono.Debugger.Soft\AppDomainUnloadEvent.cs" /> |
44 | | - <Compile Include="Mono.Debugger.Soft\ArrayMirror.cs" /> |
45 | | - <Compile Include="Mono.Debugger.Soft\AssemblyLoadEvent.cs" /> |
46 | | - <Compile Include="Mono.Debugger.Soft\AssemblyMirror.cs" /> |
47 | | - <Compile Include="Mono.Debugger.Soft\AssemblyUnloadEvent.cs" /> |
48 | | - <Compile Include="Mono.Debugger.Soft\BreakpointEvent.cs" /> |
49 | | - <Compile Include="Mono.Debugger.Soft\BreakpointEventRequest.cs" /> |
50 | | - <Compile Include="Mono.Debugger.Soft\Connection.cs" /> |
51 | | - <Compile Include="Mono.Debugger.Soft\CrashEvent.cs" /> |
52 | | - <Compile Include="Mono.Debugger.Soft\CustomAttributeDataMirror.cs" /> |
53 | | - <Compile Include="Mono.Debugger.Soft\CustomAttributeNamedArgumentMirror.cs" /> |
54 | | - <Compile Include="Mono.Debugger.Soft\CustomAttributeTypedArgumentMirror.cs" /> |
55 | | - <Compile Include="Mono.Debugger.Soft\DataConverter.cs" /> |
56 | | - <Compile Include="Mono.Debugger.Soft\EnumMirror.cs" /> |
57 | | - <Compile Include="Mono.Debugger.Soft\Event.cs" /> |
58 | | - <Compile Include="Mono.Debugger.Soft\EventQueueImpl.cs" /> |
59 | | - <Compile Include="Mono.Debugger.Soft\EventRequest.cs" /> |
60 | | - <Compile Include="Mono.Debugger.Soft\EventSet.cs" /> |
61 | | - <Compile Include="Mono.Debugger.Soft\EventType.cs" /> |
62 | | - <Compile Include="Mono.Debugger.Soft\ExceptionEvent.cs" /> |
63 | | - <Compile Include="Mono.Debugger.Soft\ExceptionEventRequest.cs" /> |
64 | | - <Compile Include="Mono.Debugger.Soft\FieldInfoMirror.cs" /> |
65 | | - <Compile Include="Mono.Debugger.Soft\IInvokeAsyncResult.cs" /> |
66 | | - <Compile Include="Mono.Debugger.Soft\ILExceptionHandler.cs" /> |
67 | | - <Compile Include="Mono.Debugger.Soft\ILInstruction.cs" /> |
68 | | - <Compile Include="Mono.Debugger.Soft\ILInterpreter.cs" /> |
69 | | - <Compile Include="Mono.Debugger.Soft\IMirror.cs" /> |
70 | | - <Compile Include="Mono.Debugger.Soft\InterfaceMappingMirror.cs" /> |
71 | | - <Compile Include="Mono.Debugger.Soft\InvalidStackFrameException.cs" /> |
72 | | - <Compile Include="Mono.Debugger.Soft\InvocationException.cs" /> |
73 | | - <Compile Include="Mono.Debugger.Soft\InvokeOptions.cs" /> |
74 | | - <Compile Include="Mono.Debugger.Soft\ITargetProcess.cs" /> |
75 | | - <Compile Include="Mono.Debugger.Soft\LocalVariable.cs" /> |
76 | | - <Compile Include="Mono.Debugger.Soft\Location.cs" /> |
77 | | - <Compile Include="Mono.Debugger.Soft\MethodBodyMirror.cs" /> |
78 | | - <Compile Include="Mono.Debugger.Soft\MethodEntryEvent.cs" /> |
79 | | - <Compile Include="Mono.Debugger.Soft\MethodEntryEventRequest.cs" /> |
80 | | - <Compile Include="Mono.Debugger.Soft\MethodExitEvent.cs" /> |
81 | | - <Compile Include="Mono.Debugger.Soft\MethodExitEventRequest.cs" /> |
82 | | - <Compile Include="Mono.Debugger.Soft\MethodMirror.cs" /> |
83 | | - <Compile Include="Mono.Debugger.Soft\Mirror.cs" /> |
84 | | - <Compile Include="Mono.Debugger.Soft\ModuleMirror.cs" /> |
85 | | - <Compile Include="Mono.Debugger.Soft\ObjectCollectedException.cs" /> |
86 | | - <Compile Include="Mono.Debugger.Soft\ObjectMirror.cs" /> |
87 | | - <Compile Include="Mono.Debugger.Soft\ParameterInfoMirror.cs" /> |
88 | | - <Compile Include="Mono.Debugger.Soft\PrimitiveValue.cs" /> |
89 | | - <Compile Include="Mono.Debugger.Soft\PropertyInfoMirror.cs" /> |
90 | | - <Compile Include="Mono.Debugger.Soft\StackFrame.cs" /> |
91 | | - <Compile Include="Mono.Debugger.Soft\StepEvent.cs" /> |
92 | | - <Compile Include="Mono.Debugger.Soft\StepEventRequest.cs" /> |
93 | | - <Compile Include="Mono.Debugger.Soft\StringMirror.cs" /> |
94 | | - <Compile Include="Mono.Debugger.Soft\StructMirror.cs" /> |
95 | | - <Compile Include="Mono.Debugger.Soft\SuspendPolicy.cs" /> |
96 | | - <Compile Include="Mono.Debugger.Soft\ThreadDeathEvent.cs" /> |
97 | | - <Compile Include="Mono.Debugger.Soft\ThreadMirror.cs" /> |
98 | | - <Compile Include="Mono.Debugger.Soft\ThreadStartEvent.cs" /> |
99 | | - <Compile Include="Mono.Debugger.Soft\TypeLoadEvent.cs" /> |
100 | | - <Compile Include="Mono.Debugger.Soft\TypeLoadEventRequest.cs" /> |
101 | | - <Compile Include="Mono.Debugger.Soft\TypeMirror.cs" /> |
102 | | - <Compile Include="Mono.Debugger.Soft\UserBreakEvent.cs" /> |
103 | | - <Compile Include="Mono.Debugger.Soft\UserLogEvent.cs" /> |
104 | | - <Compile Include="Mono.Debugger.Soft\Value.cs" /> |
105 | | - <Compile Include="Mono.Debugger.Soft\VirtualMachine.cs" /> |
106 | | - <Compile Include="Mono.Debugger.Soft\VirtualMachineManager.cs" /> |
107 | | - <Compile Include="Mono.Debugger.Soft\VMDeathEvent.cs" /> |
108 | | - <Compile Include="Mono.Debugger.Soft\VMDisconnectedException.cs" /> |
109 | | - <Compile Include="Mono.Debugger.Soft\VMDisconnectEvent.cs" /> |
110 | | - <Compile Include="Mono.Debugger.Soft\VMMismatchException.cs" /> |
111 | | - <Compile Include="Mono.Debugger.Soft\VMStartEvent.cs" /> |
112 | | - <Compile Include="Mono.Debugger.Soft\AssemblyLoadEventRequest.cs" /> |
113 | | - <Compile Include="Locale.cs" /> |
114 | | - <Compile Include="Mono.Debugger.Soft\PointerValue.cs" /> |
115 | | - <Compile Include="Mono.Debugger.Soft\LocalScope.cs" /> |
116 | | - <Compile Include="Mono.Debugger.Soft\DelayedLambdaValue.cs" /> |
117 | | - <Compile Include="Mono.Debugger.Soft\DelayedLambdaType.cs" /> |
118 | | - </ItemGroup> |
| 16 | + |
119 | 17 | <ItemGroup> |
120 | 18 | <None Include="Makefile.am" /> |
121 | 19 | <None Include="mono-git-revision" /> |
122 | 20 | </ItemGroup> |
| 21 | + |
123 | 22 | <PropertyGroup> |
124 | 23 | <NuGetVersionCecil Condition="$(NuGetVersionCecil) == ''">0.10.1</NuGetVersionCecil> |
125 | 24 | </PropertyGroup> |
| 25 | + |
126 | 26 | <ItemGroup> |
127 | 27 | <PackageReference Include="Mono.Cecil" Version="$(NuGetVersionCecil)" PrivateAssets="all" /> |
| 28 | + <PackageReference Include="System.Runtime" Version="4.3.1" /> |
128 | 29 | </ItemGroup> |
129 | | - <ItemGroup> |
130 | | - <Reference Include="System.Core" /> |
131 | | - <Reference Include="System" /> |
132 | | - </ItemGroup> |
| 30 | + |
133 | 31 | </Project> |
0 commit comments