-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssemblyInfo.cs
More file actions
24 lines (19 loc) · 840 Bytes
/
AssemblyInfo.cs
File metadata and controls
24 lines (19 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Otel4Vsix")]
[assembly: AssemblyDescription("OpenTelemetry support library for Visual Studio 2022+ extensions")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Coding With Calvin")]
[assembly: AssemblyProduct("Otel4Vsix")]
[assembly: AssemblyCopyright("Copyright (c) 2024 Calvin A. Allen")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
[assembly: Guid("a1b2c3d4-e5f6-7890-abcd-ef1234567890")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: InternalsVisibleTo("CodingWithCalvin.Otel4Vsix.Tests")]