From 4cd4e9f8dc67f654a2a48f7b9ecf556ac43cb5f0 Mon Sep 17 00:00:00 2001 From: Julius Friedman Date: Sat, 25 Nov 2023 12:03:16 -0500 Subject: [PATCH] Add missing AssemblyInfo for RtcpFeedback. --- RtcpFeedback/Properties/AssemblyInfo.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 RtcpFeedback/Properties/AssemblyInfo.cs diff --git a/RtcpFeedback/Properties/AssemblyInfo.cs b/RtcpFeedback/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..4a8ea87b --- /dev/null +++ b/RtcpFeedback/Properties/AssemblyInfo.cs @@ -0,0 +1,17 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyDescription("Provides a mananged implementation of concepts found in RFC4585")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(true)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("b9788cdc-7365-4117-9711-2cfa2057e526")] + +[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("Media.UnitTests")]