11 references to GetProductVersion
InteractiveHost.UnitTests (1)
AbstractInteractiveHostTests.cs (1)
88expectedOutput.Add(string.Format(CSharpScriptingResources.LogoLine1, CommonCompiler.GetProductVersion(typeof(CSharpReplServiceProvider))));
Microsoft.CodeAnalysis (1)
CommandLine\CommonCompiler.cs (1)
153return GetProductVersion(Type);
Microsoft.CodeAnalysis.CSharp (1)
Parser\DirectiveParser.cs (1)
330string version = CommonCompiler.GetProductVersion(typeof(CSharpCompiler));
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (1)
CommandLineTests.cs (1)
59private static readonly string s_compilerVersion = CommonCompiler.GetProductVersion(typeof(CommandLineTests));
Microsoft.CodeAnalysis.CSharp.Scripting (1)
Hosting\CSharpReplServiceProvider.cs (1)
25=> string.Format(CSharpScriptingResources.LogoLine1, CommonCompiler.GetProductVersion(typeof(CSharpReplServiceProvider)));
Microsoft.CodeAnalysis.CSharp.Scripting.Desktop.UnitTests (1)
CsiTests.cs (1)
23private static readonly string s_compilerVersion = CommonCompiler.GetProductVersion(typeof(Csi));
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (1)
CommandLineRunnerTests.cs (1)
29private static readonly string s_compilerVersion = CommonCompiler.GetProductVersion(typeof(CSharpInteractiveCompiler));
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
LexicalAndXml\PreprocessorTests.cs (1)
4660return CommonCompiler.GetProductVersion(typeof(CSharpCompiler));
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (1)
CommandLineTests.vb (1)
45Private Shared ReadOnly s_compilerVersion As String = CommonCompiler.GetProductVersion(GetType(CommandLineTests))
Microsoft.CodeAnalysis.VisualBasic.Scripting (1)
Hosting\VisualBasicReplServiceProvider.vb (1)
32Return String.Format(VBScriptingResources.LogoLine1, CommonCompiler.GetProductVersion(GetType(VisualBasicReplServiceProvider)))
Microsoft.CodeAnalysis.VisualBasic.Scripting.UnitTests (1)
CommandLineRunnerTests.vb (1)
22CommonCompiler.GetProductVersion(GetType(VisualBasicInteractiveCompiler))