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
path: root/rocks
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2015-07-30 18:25:12 +0300
committerJb Evain <jb@evain.net>2016-07-13 23:45:31 +0300
commit7cde491752861a331e091dca601748e9f0741e95 (patch)
tree71c9191cad1d70adab40ec78fa22c852b98f8412 /rocks
parent7efc4a6de7fba02965daaf407fe557ffee725b79 (diff)
Add support for the portable pdb format
Diffstat (limited to 'rocks')
-rw-r--r--rocks/Test/Mono.Cecil.Rocks.Tests.csproj3
-rw-r--r--rocks/Test/Mono.Cecil.Tests/DocCommentIdTests.cs10
2 files changed, 9 insertions, 4 deletions
diff --git a/rocks/Test/Mono.Cecil.Rocks.Tests.csproj b/rocks/Test/Mono.Cecil.Rocks.Tests.csproj
index 808c2a1..4daae64 100644
--- a/rocks/Test/Mono.Cecil.Rocks.Tests.csproj
+++ b/rocks/Test/Mono.Cecil.Rocks.Tests.csproj
@@ -32,6 +32,9 @@
<Content Include="Resources\assemblies\decsec-att.dll" />
<Content Include="Resources\assemblies\decsec-xml.dll" />
</ItemGroup>
+ <ItemGroup>
+ <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
+ </ItemGroup>
<Import Project="..\..\Mono.Cecil.Tests.settings" />
<Import Project="$(MSBuildCSharpTargets)" />
</Project> \ No newline at end of file
diff --git a/rocks/Test/Mono.Cecil.Tests/DocCommentIdTests.cs b/rocks/Test/Mono.Cecil.Tests/DocCommentIdTests.cs
index de45a2f..48c0fab 100644
--- a/rocks/Test/Mono.Cecil.Tests/DocCommentIdTests.cs
+++ b/rocks/Test/Mono.Cecil.Tests/DocCommentIdTests.cs
@@ -70,13 +70,15 @@ namespace N
/// <summary>
/// ID string generated is "E:N.X.d".
/// </summary>
+#pragma warning disable 67
public event D d;
+#pragma warning restore 67
- /// <summary>
- /// ID string generated is "P:N.X.Item(System.String)".
- /// </summary>
- public int this[string s] { get { return 1; } }
+ /// <summary>
+ /// ID string generated is "P:N.X.Item(System.String)".
+ /// </summary>
+ public int this[string s] { get { return 1; } }
/// <summary>