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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladislav Rishe <vlados.v10.0@gmail.com>2017-07-28 12:12:47 +0300
committerMarek Safar <marek.safar@gmail.com>2017-08-02 22:30:55 +0300
commitc39f545b10306e5e0420501a0777f7288bbbbf24 (patch)
tree749f2a1d16c1647f2b98d235f5f9c01c8b6673d1 /linker/Tests/Mono.Linker.Tests.Cases.Expectations
parent39b70e7550e38188a6f411d7ec46fc9ac5528cd8 (diff)
Provide 'event' and 'property' elements support with Link XML step.
Diffstat (limited to 'linker/Tests/Mono.Linker.Tests.Cases.Expectations')
-rw-r--r--linker/Tests/Mono.Linker.Tests.Cases.Expectations/Assertions/KeptBackingFieldAttribute.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/linker/Tests/Mono.Linker.Tests.Cases.Expectations/Assertions/KeptBackingFieldAttribute.cs b/linker/Tests/Mono.Linker.Tests.Cases.Expectations/Assertions/KeptBackingFieldAttribute.cs
index a4160490a..b21ce0628 100644
--- a/linker/Tests/Mono.Linker.Tests.Cases.Expectations/Assertions/KeptBackingFieldAttribute.cs
+++ b/linker/Tests/Mono.Linker.Tests.Cases.Expectations/Assertions/KeptBackingFieldAttribute.cs
@@ -1,8 +1,7 @@
using System;
-namespace Mono.Linker.Tests.Cases.Expectations.Assertions
-{
- [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)]
+namespace Mono.Linker.Tests.Cases.Expectations.Assertions {
+ [AttributeUsage(AttributeTargets.Property | AttributeTargets.Event, AllowMultiple = false, Inherited = false)]
public sealed class KeptBackingFieldAttribute : KeptAttribute {
}
}