File: AssemblyInfo.cs
Web Access
Project: src\src\runtime\src\coreclr\tools\aot\ILCompiler.Diagnostics\ILCompiler.Diagnostics.csproj (ILCompiler.Diagnostics)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;
using System.Runtime.CompilerServices;

[assembly: DisableRuntimeMarshalling]

namespace ILCompiler.Diagnostics
{
    public struct AssemblyInfo
    {
        public readonly string Name;
        public readonly Guid Mvid;

        public AssemblyInfo(string name, Guid mvid)
        {
            Name = name;
            Mvid = mvid;
        }
    }
}