1 write to Properties
Microsoft.CodeAnalysis (1)
209 references to Properties
Microsoft.CodeAnalysis (36)
Microsoft.CodeAnalysis.CSharp (6)
Microsoft.CodeAnalysis.CSharp.Features (2)
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (42)
Microsoft.CodeAnalysis.CSharp.Test.Utilities (3)
Microsoft.CodeAnalysis.Features (1)
Microsoft.CodeAnalysis.InteractiveHost (1)
Microsoft.CodeAnalysis.Rebuild (3)
Microsoft.CodeAnalysis.Rebuild.UnitTests (1)
Microsoft.CodeAnalysis.Scripting (1)
Microsoft.CodeAnalysis.Test.Utilities (5)
Microsoft.CodeAnalysis.UnitTests (71)
MetadataReferences\MetadataReferenceTests.cs (71)
105Assert.Equal(MetadataImageKind.Assembly, r.Properties.Kind);
106Assert.False(r.Properties.EmbedInteropTypes);
107Assert.True(r.Properties.Aliases.IsEmpty);
136Assert.Equal(MetadataImageKind.Assembly, r.Properties.Kind);
137Assert.False(r.Properties.EmbedInteropTypes);
138Assert.True(r.Properties.Aliases.IsEmpty);
152Assert.Equal(MetadataImageKind.Module, r.Properties.Kind);
153Assert.False(r.Properties.EmbedInteropTypes);
154Assert.True(r.Properties.Aliases.IsEmpty);
168Assert.Equal(MetadataImageKind.Assembly, r.Properties.Kind);
169Assert.False(r.Properties.EmbedInteropTypes);
170Assert.True(r.Properties.Aliases.IsEmpty);
173Assert.Equal(props, MetadataReference.CreateFromFile(file.Path, props).Properties);
191Assert.Equal(MetadataImageKind.Module, r.Properties.Kind);
192Assert.False(r.Properties.EmbedInteropTypes);
193Assert.True(r.Properties.Aliases.IsEmpty);
196Assert.Equal(props, MetadataReference.CreateFromFile(file.Path, props).Properties);
211Assert.Equal(MetadataImageKind.Assembly, r.Properties.Kind);
212Assert.False(r.Properties.EmbedInteropTypes);
213Assert.True(r.Properties.Aliases.IsEmpty);
217Assert.Equal(props, MetadataReference.CreateFromAssemblyInternal(assembly, props).Properties);
228Assert.Equal(MetadataImageKind.Assembly, r.Properties.Kind);
229Assert.True(r.Properties.EmbedInteropTypes);
230AssertEx.Equal(ImmutableArray.Create("a", "b"), r.Properties.Aliases);
261Assert.False(r.Properties.EmbedInteropTypes);
262Assert.Equal(MetadataImageKind.Module, r.Properties.Kind);
263Assert.True(r.Properties.Aliases.IsEmpty);
278Assert.Equal(MetadataImageKind.Assembly, r4.Properties.Kind);
300Assert.True(r.Properties.EmbedInteropTypes);
301Assert.Equal(MetadataImageKind.Assembly, r.Properties.Kind);
302AssertEx.Equal(new[] { "a" }, r.Properties.Aliases);
312Assert.Equal(r.Properties.EmbedInteropTypes, r3.Properties.EmbedInteropTypes);
313Assert.Equal(r.Properties.Kind, r3.Properties.Kind);
314AssertEx.Equal(new[] { "b", "c" }, r3.Properties.Aliases);
320Assert.False(r4.Properties.EmbedInteropTypes);
321Assert.Equal(r.Properties.Kind, r4.Properties.Kind);
322AssertEx.Equal(r.Properties.Aliases, r4.Properties.Aliases);
326Assert.Equal(MetadataImageKind.Module, r5.Properties.Kind);
327Assert.True(r5.Properties.Aliases.IsEmpty);
328Assert.False(r5.Properties.EmbedInteropTypes);
331Assert.Equal(MetadataImageKind.Assembly, r6.Properties.Kind);
332AssertEx.Equal(new[] { "x" }, r6.Properties.Aliases);
333Assert.True(r6.Properties.EmbedInteropTypes);
342Assert.False(r.Properties.EmbedInteropTypes);
343Assert.True(r.Properties.Aliases.IsEmpty);
344Assert.Equal(MetadataImageKind.Assembly, r.Properties.Kind);
348Assert.False(r1.Properties.EmbedInteropTypes);
349AssertEx.Equal(new[] { "a", "b" }, r1.Properties.Aliases);
350Assert.Equal(MetadataImageKind.Assembly, r1.Properties.Kind);
354Assert.True(r2.Properties.EmbedInteropTypes);
355Assert.True(r2.Properties.Aliases.IsEmpty);
356Assert.Equal(MetadataImageKind.Assembly, r2.Properties.Kind);
360Assert.True(r3.Properties.EmbedInteropTypes);
361AssertEx.Equal(new[] { "x" }, r3.Properties.Aliases);
362Assert.Equal(MetadataImageKind.Assembly, r3.Properties.Kind);
373Assert.False(r.Properties.EmbedInteropTypes);
374Assert.True(r.Properties.Aliases.IsEmpty);
375Assert.Equal(MetadataImageKind.Assembly, r.Properties.Kind);
379Assert.False(r1.Properties.EmbedInteropTypes);
380AssertEx.Equal(new[] { "a", "b" }, r1.Properties.Aliases);
381Assert.Equal(MetadataImageKind.Assembly, r1.Properties.Kind);
385Assert.True(r2.Properties.EmbedInteropTypes);
386Assert.True(r2.Properties.Aliases.IsEmpty);
387Assert.Equal(MetadataImageKind.Assembly, r2.Properties.Kind);
391Assert.True(r3.Properties.EmbedInteropTypes);
392AssertEx.Equal(new[] { "x" }, r3.Properties.Aliases);
393Assert.Equal(MetadataImageKind.Assembly, r3.Properties.Kind);
Microsoft.CodeAnalysis.VisualBasic (5)
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (12)
Microsoft.CodeAnalysis.Workspaces (11)
Microsoft.CodeAnalysis.Workspaces.MSBuild (3)
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (4)
Microsoft.VisualStudio.LanguageServices (1)
VBCSCompiler (1)