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:
authorDmitriy Vornychev <dm.s.vornychev@gmail.com>2021-01-20 10:23:25 +0300
committerGitHub <noreply@github.com>2021-01-20 10:23:25 +0300
commitc90ecd979b2ff2c9ee52b34289c5b84736e4c74a (patch)
tree9a71d0af1a986af5cfbe3b9253fe0fd4541a1c77
parentf556cfe197c4975647b97d59a134da8665423d15 (diff)
Change DebugType from `full` to `portable` (#335)
-rw-r--r--CorApi/CorApi.csproj2
-rw-r--r--CorApi2/CorApi2.csproj2
-rw-r--r--Mono.Debugger.Soft/Mono.Debugger.Soft.csproj2
-rw-r--r--Mono.Debugging.Soft/Mono.Debugging.Soft.csproj2
-rw-r--r--Mono.Debugging.Win32/Mono.Debugging.Win32.csproj4
-rw-r--r--Mono.Debugging/Mono.Debugging.csproj2
-rw-r--r--UnitTests/MonoDevelop.Debugger.Tests.AppDomainClient/MonoDevelop.Debugger.Tests.AppDomainClient.csproj10
-rw-r--r--UnitTests/MonoDevelop.Debugger.Tests.NonUserCodeTestLib/MonoDevelop.Debugger.Tests.NonUserCodeTestLib.csproj2
-rw-r--r--UnitTests/MonoDevelop.Debugger.Tests.TestApp/MonoDevelop.Debugger.Tests.TestApp.csproj2
9 files changed, 14 insertions, 14 deletions
diff --git a/CorApi/CorApi.csproj b/CorApi/CorApi.csproj
index 018ac2a..98a18e4 100644
--- a/CorApi/CorApi.csproj
+++ b/CorApi/CorApi.csproj
@@ -14,7 +14,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
+ <DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
diff --git a/CorApi2/CorApi2.csproj b/CorApi2/CorApi2.csproj
index 8815244..3f9f00f 100644
--- a/CorApi2/CorApi2.csproj
+++ b/CorApi2/CorApi2.csproj
@@ -14,7 +14,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
+ <DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;MDBG_FEATURE_INTEROP,MDBGENG_FEATURE_TRACECALLS,MDBGENG_FEATURE_CAPTUREOUTPUT,CORAPI_EXPOSE_RAW_INTERFACES</DefineConstants>
diff --git a/Mono.Debugger.Soft/Mono.Debugger.Soft.csproj b/Mono.Debugger.Soft/Mono.Debugger.Soft.csproj
index aa022cc..0ca9859 100644
--- a/Mono.Debugger.Soft/Mono.Debugger.Soft.csproj
+++ b/Mono.Debugger.Soft/Mono.Debugger.Soft.csproj
@@ -14,7 +14,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
- <DebugType>full</DebugType>
+ <DebugType>portable</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>MONO_DATACONVERTER_STATIC_METHODS;ENABLE_CECIL</DefineConstants>
diff --git a/Mono.Debugging.Soft/Mono.Debugging.Soft.csproj b/Mono.Debugging.Soft/Mono.Debugging.Soft.csproj
index a932409..84033f5 100644
--- a/Mono.Debugging.Soft/Mono.Debugging.Soft.csproj
+++ b/Mono.Debugging.Soft/Mono.Debugging.Soft.csproj
@@ -13,7 +13,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
- <DebugType>full</DebugType>
+ <DebugType>portable</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
diff --git a/Mono.Debugging.Win32/Mono.Debugging.Win32.csproj b/Mono.Debugging.Win32/Mono.Debugging.Win32.csproj
index 67dbf0c..1f2ef13 100644
--- a/Mono.Debugging.Win32/Mono.Debugging.Win32.csproj
+++ b/Mono.Debugging.Win32/Mono.Debugging.Win32.csproj
@@ -17,7 +17,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
+ <DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
@@ -26,7 +26,7 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>full</DebugType>
+ <DebugType>portable</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
diff --git a/Mono.Debugging/Mono.Debugging.csproj b/Mono.Debugging/Mono.Debugging.csproj
index 784bfce..073fb74 100644
--- a/Mono.Debugging/Mono.Debugging.csproj
+++ b/Mono.Debugging/Mono.Debugging.csproj
@@ -15,7 +15,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
- <DebugType>full</DebugType>
+ <DebugType>portable</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
diff --git a/UnitTests/MonoDevelop.Debugger.Tests.AppDomainClient/MonoDevelop.Debugger.Tests.AppDomainClient.csproj b/UnitTests/MonoDevelop.Debugger.Tests.AppDomainClient/MonoDevelop.Debugger.Tests.AppDomainClient.csproj
index 539fdfa..d9de51f 100644
--- a/UnitTests/MonoDevelop.Debugger.Tests.AppDomainClient/MonoDevelop.Debugger.Tests.AppDomainClient.csproj
+++ b/UnitTests/MonoDevelop.Debugger.Tests.AppDomainClient/MonoDevelop.Debugger.Tests.AppDomainClient.csproj
@@ -7,13 +7,13 @@
<OutputType>Exe</OutputType>
<RootNamespace>MonoDevelop.Debugger.Tests.AppDomainClient</RootNamespace>
<AssemblyName>MonoDevelop.Debugger.Tests.AppDomainClient</AssemblyName>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
- <ProductVersion>8.0.30703</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
+ <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
+ <ProductVersion>8.0.30703</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
+ <DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
@@ -35,4 +35,4 @@
<Compile Include="Client.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
-</Project>
+</Project>
diff --git a/UnitTests/MonoDevelop.Debugger.Tests.NonUserCodeTestLib/MonoDevelop.Debugger.Tests.NonUserCodeTestLib.csproj b/UnitTests/MonoDevelop.Debugger.Tests.NonUserCodeTestLib/MonoDevelop.Debugger.Tests.NonUserCodeTestLib.csproj
index 5159eec..3c9e00c 100644
--- a/UnitTests/MonoDevelop.Debugger.Tests.NonUserCodeTestLib/MonoDevelop.Debugger.Tests.NonUserCodeTestLib.csproj
+++ b/UnitTests/MonoDevelop.Debugger.Tests.NonUserCodeTestLib/MonoDevelop.Debugger.Tests.NonUserCodeTestLib.csproj
@@ -13,7 +13,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
+ <DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
diff --git a/UnitTests/MonoDevelop.Debugger.Tests.TestApp/MonoDevelop.Debugger.Tests.TestApp.csproj b/UnitTests/MonoDevelop.Debugger.Tests.TestApp/MonoDevelop.Debugger.Tests.TestApp.csproj
index 55ceb7f..ce40b08 100644
--- a/UnitTests/MonoDevelop.Debugger.Tests.TestApp/MonoDevelop.Debugger.Tests.TestApp.csproj
+++ b/UnitTests/MonoDevelop.Debugger.Tests.TestApp/MonoDevelop.Debugger.Tests.TestApp.csproj
@@ -13,7 +13,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
- <DebugType>full</DebugType>
+ <DebugType>portable</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>