5 instantiations of CommitHashAttribute
csc (1)
artifacts\obj\csc\Release\net8.0\csc.AssemblyInfo.cs (1)
13[assembly: Microsoft.CodeAnalysis.CommitHashAttribute("<developer build>")]
Microsoft.CodeAnalysis.CSharp (1)
artifacts\obj\Microsoft.CodeAnalysis.CSharp\Release\net8.0\Microsoft.CodeAnalysis.CSharp.AssemblyInfo.cs (1)
13[assembly: Microsoft.CodeAnalysis.CommitHashAttribute("<developer build>")]
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (1)
artifacts\obj\Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests\Release\net472\Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests.AssemblyInfo.cs (1)
13[assembly: Microsoft.CodeAnalysis.CommitHashAttribute("<developer build>")]
vbc (1)
artifacts\obj\vbc\Release\net472\vbc.AssemblyInfo.cs (1)
13[assembly: Microsoft.CodeAnalysis.CommitHashAttribute("<developer build>")]
VBCSCompiler (1)
artifacts\obj\VBCSCompiler\Release\net472\VBCSCompiler.AssemblyInfo.cs (1)
13[assembly: Microsoft.CodeAnalysis.CommitHashAttribute("<developer build>")]
7 references to CommitHashAttribute
csc (2)
src\Compilers\Shared\BuildProtocol.cs (2)
591/// Reads the value of <see cref="CommitHashAttribute.Hash"/> of the assembly <see cref="BuildRequest"/> is defined in 596var hashAttributes = typeof(BuildRequest).Assembly.GetCustomAttributes<CommitHashAttribute>();
Microsoft.CodeAnalysis (1)
CommandLine\CommonCompiler.cs (1)
187var hash = type.Assembly.GetCustomAttribute<CommitHashAttribute>()?.Hash;
vbc (2)
src\Compilers\Shared\BuildProtocol.cs (2)
591/// Reads the value of <see cref="CommitHashAttribute.Hash"/> of the assembly <see cref="BuildRequest"/> is defined in 596var hashAttributes = typeof(BuildRequest).Assembly.GetCustomAttributes<CommitHashAttribute>();
VBCSCompiler (2)
src\Compilers\Shared\BuildProtocol.cs (2)
591/// Reads the value of <see cref="CommitHashAttribute.Hash"/> of the assembly <see cref="BuildRequest"/> is defined in 596var hashAttributes = typeof(BuildRequest).Assembly.GetCustomAttributes<CommitHashAttribute>();