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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jb@evain.net>2014-11-09 20:22:38 +0300
committerJb Evain <jb@evain.net>2014-11-09 20:23:21 +0300
commitdc8ab9ea0ef5d5657fec882c578638b9d6b190ed (patch)
tree3c4fea890e6a22123c961c2b9729011239edcc95 /symbols
parentd8ff2b79802fcb33b30bdc1d8defc12d47291f4b (diff)
Factorize project settings
Diffstat (limited to 'symbols')
-rw-r--r--symbols/mdb/.gitignore4
-rw-r--r--symbols/mdb/Mono.Cecil.Mdb.csproj133
-rw-r--r--symbols/mdb/Test/.gitignore4
-rw-r--r--symbols/mdb/Test/Mono.Cecil.Mdb.Tests.csproj89
-rw-r--r--symbols/pdb/.gitignore4
-rw-r--r--symbols/pdb/Mono.Cecil.Pdb.csproj184
-rw-r--r--symbols/pdb/Test/.gitignore4
-rw-r--r--symbols/pdb/Test/Mono.Cecil.Pdb.Tests.csproj89
8 files changed, 85 insertions, 426 deletions
diff --git a/symbols/mdb/.gitignore b/symbols/mdb/.gitignore
deleted file mode 100644
index 17ff348..0000000
--- a/symbols/mdb/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-bin
-obj
-*.xml
-*.user
diff --git a/symbols/mdb/Mono.Cecil.Mdb.csproj b/symbols/mdb/Mono.Cecil.Mdb.csproj
index 44c931e..2281044 100644
--- a/symbols/mdb/Mono.Cecil.Mdb.csproj
+++ b/symbols/mdb/Mono.Cecil.Mdb.csproj
@@ -1,103 +1,32 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">net_4_0_Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>9.0.30729</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{8559DD7F-A16F-46D0-A05A-9139FAEBA8FD}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Mono.Cecil.Mdb</RootNamespace>
- <AssemblyName>Mono.Cecil.Mdb</AssemblyName>
- <FileAlignment>512</FileAlignment>
- <SignAssembly>true</SignAssembly>
- <AssemblyOriginatorKeyFile>..\..\mono.snk</AssemblyOriginatorKeyFile>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\..\bin\net_2_0_Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;CECIL</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\..\bin\net_2_0_Release\</OutputPath>
- <DefineConstants>TRACE;CECIL</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_3_5_Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\..\bin\net_3_5_Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;CECIL;NET_3_5</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_3_5_Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\..\bin\net_3_5_Release\</OutputPath>
- <DefineConstants>TRACE;CECIL;NET_3_5</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_0_Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\..\bin\net_4_0_Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;CECIL;NET_3_5;NET_4_0</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_0_Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\..\bin\net_4_0_Release\</OutputPath>
- <DefineConstants>TRACE;CECIL;NET_3_5;NET_4_0</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- </PropertyGroup>
- <ItemGroup Condition=" '$(TargetFrameworkVersion)' != 'v2.0' ">
- <Reference Include="System.Core" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="System" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Mono.Cecil.csproj">
- <Project>{D68133BD-1E63-496E-9EDE-4FBDBF77B486}</Project>
- <Name>Mono.Cecil</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Mono.Cecil.Mdb\AssemblyInfo.cs" />
- <Compile Include="Mono.Cecil.Mdb\MdbReader.cs" />
- <Compile Include="Mono.Cecil.Mdb\MdbWriter.cs" />
- <Compile Include="Mono.CompilerServices.SymbolWriter\MonoSymbolFile.cs" />
- <Compile Include="Mono.CompilerServices.SymbolWriter\MonoSymbolTable.cs" />
- <Compile Include="Mono.CompilerServices.SymbolWriter\MonoSymbolWriter.cs" />
- <Compile Include="Mono.CompilerServices.SymbolWriter\SymbolWriterImpl.cs" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="..\..\Mono.Cecil.settings" />
+ <PropertyGroup>
+ <ProjectGuid>{8559DD7F-A16F-46D0-A05A-9139FAEBA8FD}</ProjectGuid>
+ <RootNamespace>Mono.Cecil.Mdb</RootNamespace>
+ <AssemblyName>Mono.Cecil.Mdb</AssemblyName>
+ <DefineConstants>$(DefineConstants);CECIL</DefineConstants>
+ </PropertyGroup>
+ <ItemGroup Condition=" '$(TargetFrameworkVersion)' != 'v2.0' ">
+ <Reference Include="System.Core" />
+ </ItemGroup>
+ <ItemGroup>
+ <Reference Include="System" />
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\Mono.Cecil.csproj">
+ <Project>{D68133BD-1E63-496E-9EDE-4FBDBF77B486}</Project>
+ <Name>Mono.Cecil</Name>
+ </ProjectReference>
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="Mono.Cecil.Mdb\AssemblyInfo.cs" />
+ <Compile Include="Mono.Cecil.Mdb\MdbReader.cs" />
+ <Compile Include="Mono.Cecil.Mdb\MdbWriter.cs" />
+ <Compile Include="Mono.CompilerServices.SymbolWriter\MonoSymbolFile.cs" />
+ <Compile Include="Mono.CompilerServices.SymbolWriter\MonoSymbolTable.cs" />
+ <Compile Include="Mono.CompilerServices.SymbolWriter\MonoSymbolWriter.cs" />
+ <Compile Include="Mono.CompilerServices.SymbolWriter\SymbolWriterImpl.cs" />
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project> \ No newline at end of file
diff --git a/symbols/mdb/Test/.gitignore b/symbols/mdb/Test/.gitignore
deleted file mode 100644
index 17ff348..0000000
--- a/symbols/mdb/Test/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-bin
-obj
-*.xml
-*.user
diff --git a/symbols/mdb/Test/Mono.Cecil.Mdb.Tests.csproj b/symbols/mdb/Test/Mono.Cecil.Mdb.Tests.csproj
index 630b28b..3082d98 100644
--- a/symbols/mdb/Test/Mono.Cecil.Mdb.Tests.csproj
+++ b/symbols/mdb/Test/Mono.Cecil.Mdb.Tests.csproj
@@ -1,77 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="..\..\..\Mono.Cecil.Tests.settings" />
<PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">net_4_0_Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>9.0.30729</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{AC71DF9C-99FA-4A63-990A-66C8010355A6}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Mono.Cecil.Mdb.Tests</RootNamespace>
<AssemblyName>Mono.Cecil.Mdb.Tests</AssemblyName>
- <FileAlignment>512</FileAlignment>
</PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\net_2_0_Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\net_2_0_Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_3_5_Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\net_3_5_Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;NET_3_5</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_3_5_Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\net_3_5_Release\</OutputPath>
- <DefineConstants>TRACE;NET_3_5</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_0_Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\net_4_0_Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;NET_3_5;NET_4_0</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_0_Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\net_4_0_Release\</OutputPath>
- <DefineConstants>TRACE;NET_3_5;NET_4_0</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- </PropertyGroup>
- <ItemGroup Condition=" '$(TargetFrameworkVersion)' != 'v2.0' ">
- <Reference Include="System.Core" />
- </ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Mono.Cecil.csproj">
<Project>{D68133BD-1E63-496E-9EDE-4FBDBF77B486}</Project>
@@ -93,26 +27,5 @@
<Content Include="Resources\assemblies\hello.exe" />
<Content Include="Resources\assemblies\hello.exe.mdb" />
</ItemGroup>
- <ItemGroup>
- <Reference Include="nunit.core">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\Test\libs\nunit-2.6.2\nunit.core.dll</HintPath>
- </Reference>
- <Reference Include="nunit.core.interfaces">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\Test\libs\nunit-2.6.2\nunit.core.interfaces.dll</HintPath>
- </Reference>
- <Reference Include="nunit.framework">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\Test\libs\nunit-2.6.2\nunit.framework.dll</HintPath>
- </Reference>
- </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
</Project> \ No newline at end of file
diff --git a/symbols/pdb/.gitignore b/symbols/pdb/.gitignore
deleted file mode 100644
index 17ff348..0000000
--- a/symbols/pdb/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-bin
-obj
-*.xml
-*.user
diff --git a/symbols/pdb/Mono.Cecil.Pdb.csproj b/symbols/pdb/Mono.Cecil.Pdb.csproj
index e35add0..37fcd97 100644
--- a/symbols/pdb/Mono.Cecil.Pdb.csproj
+++ b/symbols/pdb/Mono.Cecil.Pdb.csproj
@@ -1,133 +1,53 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">net_4_0_Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>9.0.30729</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{63E6915C-7EA4-4D76-AB28-0D7191EEA626}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Mono.Cecil.Pdb</RootNamespace>
- <AssemblyName>Mono.Cecil.Pdb</AssemblyName>
- <FileAlignment>512</FileAlignment>
- <SignAssembly>true</SignAssembly>
- <AssemblyOriginatorKeyFile>..\..\mono.snk</AssemblyOriginatorKeyFile>
- <NoWarn>0649</NoWarn>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\..\bin\net_2_0_Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\..\bin\net_2_0_Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_3_5_Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\..\bin\net_3_5_Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;NET_3_5</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_3_5_Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\..\bin\net_3_5_Release\</OutputPath>
- <DefineConstants>TRACE;NET_3_5</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_0_Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\..\bin\net_4_0_Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;NET_3_5;NET_4_0</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_0_Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\..\bin\net_4_0_Release\</OutputPath>
- <DefineConstants>TRACE;NET_3_5;NET_4_0</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- </PropertyGroup>
- <ItemGroup Condition=" '$(TargetFrameworkVersion)' != 'v2.0' ">
- <Reference Include="System.Core" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="System" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Mono.Cecil.csproj">
- <Project>{D68133BD-1E63-496E-9EDE-4FBDBF77B486}</Project>
- <Name>Mono.Cecil</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Microsoft.Cci.Pdb\BitAccess.cs" />
- <Compile Include="Microsoft.Cci.Pdb\BitSet.cs" />
- <Compile Include="Microsoft.Cci.Pdb\CvInfo.cs" />
- <Compile Include="Microsoft.Cci.Pdb\DataStream.cs" />
- <Compile Include="Microsoft.Cci.Pdb\DbiDbgHdr.cs" />
- <Compile Include="Microsoft.Cci.Pdb\DbiHeader.cs" />
- <Compile Include="Microsoft.Cci.Pdb\DbiModuleInfo.cs" />
- <Compile Include="Microsoft.Cci.Pdb\DbiSecCon.cs" />
- <Compile Include="Microsoft.Cci.Pdb\Interfaces.cs" />
- <Compile Include="Microsoft.Cci.Pdb\IntHashTable.cs" />
- <Compile Include="Microsoft.Cci.Pdb\MsfDirectory.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbConstant.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbDebugException.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbException.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbFile.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbFileHeader.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbFunction.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbLine.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbLines.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbReader.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbScope.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbSlot.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbSource.cs" />
- <Compile Include="Microsoft.Cci.Pdb\PdbTokenLine.cs" />
- <Compile Include="Microsoft.Cci.Pdb\SourceLocationProvider.cs">
- <SubType>Code</SubType>
- </Compile>
- <Compile Include="Mono.Cecil.Pdb\AssemblyInfo.cs" />
- <Compile Include="Mono.Cecil.Pdb\ISymUnmanagedDocumentWriter.cs" />
- <Compile Include="Mono.Cecil.Pdb\ISymUnmanagedWriter2.cs" />
- <Compile Include="Mono.Cecil.Pdb\ModuleMetadata.cs" />
- <Compile Include="Mono.Cecil.Pdb\PdbHelper.cs" />
- <Compile Include="Mono.Cecil.Pdb\PdbReader.cs" />
- <Compile Include="Mono.Cecil.Pdb\PdbWriter.cs" />
- <Compile Include="Mono.Cecil.Pdb\SymDocumentWriter.cs" />
- <Compile Include="Mono.Cecil.Pdb\SymWriter.cs" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="..\..\Mono.Cecil.settings" />
+ <PropertyGroup>
+ <ProjectGuid>{63E6915C-7EA4-4D76-AB28-0D7191EEA626}</ProjectGuid>
+ <RootNamespace>Mono.Cecil.Pdb</RootNamespace>
+ <AssemblyName>Mono.Cecil.Pdb</AssemblyName>
+ <NoWarn>0649</NoWarn>
+ </PropertyGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\Mono.Cecil.csproj">
+ <Project>{D68133BD-1E63-496E-9EDE-4FBDBF77B486}</Project>
+ <Name>Mono.Cecil</Name>
+ </ProjectReference>
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="Microsoft.Cci.Pdb\BitAccess.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\BitSet.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\CvInfo.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\DataStream.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\DbiDbgHdr.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\DbiHeader.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\DbiModuleInfo.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\DbiSecCon.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\Interfaces.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\IntHashTable.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\MsfDirectory.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbConstant.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbDebugException.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbException.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbFile.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbFileHeader.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbFunction.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbLine.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbLines.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbReader.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbScope.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbSlot.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbSource.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\PdbTokenLine.cs" />
+ <Compile Include="Microsoft.Cci.Pdb\SourceLocationProvider.cs" />
+ <Compile Include="Mono.Cecil.Pdb\AssemblyInfo.cs" />
+ <Compile Include="Mono.Cecil.Pdb\ISymUnmanagedDocumentWriter.cs" />
+ <Compile Include="Mono.Cecil.Pdb\ISymUnmanagedWriter2.cs" />
+ <Compile Include="Mono.Cecil.Pdb\ModuleMetadata.cs" />
+ <Compile Include="Mono.Cecil.Pdb\PdbHelper.cs" />
+ <Compile Include="Mono.Cecil.Pdb\PdbReader.cs" />
+ <Compile Include="Mono.Cecil.Pdb\PdbWriter.cs" />
+ <Compile Include="Mono.Cecil.Pdb\SymDocumentWriter.cs" />
+ <Compile Include="Mono.Cecil.Pdb\SymWriter.cs" />
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project> \ No newline at end of file
diff --git a/symbols/pdb/Test/.gitignore b/symbols/pdb/Test/.gitignore
deleted file mode 100644
index 17ff348..0000000
--- a/symbols/pdb/Test/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-bin
-obj
-*.xml
-*.user
diff --git a/symbols/pdb/Test/Mono.Cecil.Pdb.Tests.csproj b/symbols/pdb/Test/Mono.Cecil.Pdb.Tests.csproj
index 80c1bec..104b696 100644
--- a/symbols/pdb/Test/Mono.Cecil.Pdb.Tests.csproj
+++ b/symbols/pdb/Test/Mono.Cecil.Pdb.Tests.csproj
@@ -1,77 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="..\..\..\Mono.Cecil.Tests.settings" />
<PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">net_4_0_Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>9.0.30729</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{29300103-CB76-4A1D-B6FD-FFD91C1EC8AA}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Mono.Cecil.Pdb.Tests</RootNamespace>
<AssemblyName>Mono.Cecil.Pdb.Tests</AssemblyName>
- <FileAlignment>512</FileAlignment>
</PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\net_2_0_Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\net_2_0_Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_3_5_Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\net_3_5_Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;NET_3_5</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_3_5_Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\net_3_5_Release\</OutputPath>
- <DefineConstants>TRACE;NET_3_5</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_0_Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\net_4_0_Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;NET_3_5;NET_4_0</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_0_Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\net_4_0_Release\</OutputPath>
- <DefineConstants>TRACE;NET_3_5;NET_4_0</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- </PropertyGroup>
- <ItemGroup Condition=" '$(TargetFrameworkVersion)' != 'v2.0' ">
- <Reference Include="System.Core" />
- </ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Mono.Cecil.csproj">
<Project>{D68133BD-1E63-496E-9EDE-4FBDBF77B486}</Project>
@@ -98,26 +32,5 @@
<Content Include="Resources\assemblies\VBConsApp.exe" />
<Content Include="Resources\assemblies\VBConsApp.pdb" />
</ItemGroup>
- <ItemGroup>
- <Reference Include="nunit.core">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\Test\libs\nunit-2.6.2\nunit.core.dll</HintPath>
- </Reference>
- <Reference Include="nunit.core.interfaces">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\Test\libs\nunit-2.6.2\nunit.core.interfaces.dll</HintPath>
- </Reference>
- <Reference Include="nunit.framework">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\Test\libs\nunit-2.6.2\nunit.framework.dll</HintPath>
- </Reference>
- </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
</Project> \ No newline at end of file