blob: 8cee0ae95c589fc551a77ab5a9832db1518f83dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
using System;
using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Managed Bootstrapper Application Host (WiX)")]
[assembly: AssemblyDescription("Managed Bootstrapper Application Host")]
[assembly: AssemblyProduct("WiX Toolset")]
[assembly: AssemblyCompany("WiX Toolset Team")]
[assembly: AssemblyCopyright("Copyright (c) .NET Foundation and contributors. All rights reserved.")]
// Types should not be visible to COM by default.
[assembly: ComVisible(false)]
[assembly: Guid("6f4e0cc9-8ad4-4b5a-a669-3aafff67a76f")]
[assembly: CLSCompliantAttribute(true)]
|