Skip to content

Commit 916a1ec

Browse files
author
David Karlaš
authored
Merge pull request #101 from JetBrains/moveWin32
Move win32 debugger from MD repo
2 parents c79f049 + 7863d46 commit 916a1ec

File tree

104 files changed

+25927
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+25927
-0
lines changed

CorApi/.editorconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[*.cs]
2+
indent_style = space
3+
indent_size = 4
4+
end_of_line = crlf

CorApi/CorApi.csproj

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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>8.0.30703</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>{9FBCC262-10DC-4E84-A5C4-17230BBF8862}</ProjectGuid>
9+
<OutputType>Library</OutputType>
10+
<RootNamespace>CorApi</RootNamespace>
11+
<AssemblyName>CorApi</AssemblyName>
12+
<RunPostBuildEvent>Always</RunPostBuildEvent>
13+
<SccProjectName>
14+
</SccProjectName>
15+
<SccLocalPath>
16+
</SccLocalPath>
17+
<SccAuxPath>
18+
</SccAuxPath>
19+
<SccProvider>
20+
</SccProvider>
21+
<FileUpgradeFlags>
22+
</FileUpgradeFlags>
23+
<OldToolsVersion>3.5</OldToolsVersion>
24+
<UpgradeBackupLocation>
25+
</UpgradeBackupLocation>
26+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
27+
</PropertyGroup>
28+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
29+
<DebugSymbols>true</DebugSymbols>
30+
<DebugType>full</DebugType>
31+
<Optimize>false</Optimize>
32+
<OutputPath>bin\Debug\</OutputPath>
33+
<DefineConstants>DEBUG;TRACE</DefineConstants>
34+
<ErrorReport>prompt</ErrorReport>
35+
<WarningLevel>4</WarningLevel>
36+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
37+
<PlatformTarget>AnyCPU</PlatformTarget>
38+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
39+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
40+
</PropertyGroup>
41+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
42+
<DebugType>pdbonly</DebugType>
43+
<Optimize>true</Optimize>
44+
<OutputPath>bin\Release\</OutputPath>
45+
<DefineConstants>TRACE</DefineConstants>
46+
<ErrorReport>prompt</ErrorReport>
47+
<WarningLevel>4</WarningLevel>
48+
<PlatformTarget>AnyCPU</PlatformTarget>
49+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
50+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
51+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
52+
<DebugSymbols>true</DebugSymbols>
53+
</PropertyGroup>
54+
<ItemGroup>
55+
<Reference Include="System" />
56+
<Reference Include="System.Data" />
57+
<Reference Include="System.Xml" />
58+
</ItemGroup>
59+
<ItemGroup>
60+
<Compile Include="IMetadataImport.cs" />
61+
<Compile Include="ICorDebugWrappers.cs" />
62+
<Compile Include="ICorPublishWrappers.cs" />
63+
<Compile Include="RawAssemblyAttributes.cs" />
64+
<Compile Include="WindowsImports.cs" />
65+
</ItemGroup>
66+
<Import Project="..\Mono.Debugging.settings" />
67+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
68+
</Project>

0 commit comments

Comments
 (0)