summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/ModLoading/AssemblyParseResult.cs
blob: b56a776c734cd72abffc68c06259785f3e252f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System.IO;
using Mono.Cecil;

namespace StardewModdingAPI.Framework.ModLoading
{
    /// <summary>Metadata about a parsed assembly definition.</summary>
    internal class AssemblyParseResult
    {
        /*********
        ** Accessors
        *********/
        /// <summary>The original assembly file.</summary>
        public readonly FileInfo File;

        /// <summary>The assembly definition.</summary>
        public readonly AssemblyDefinition Definition;

        /// <summary>The result of the assembly load.</summary>
        public AssemblyLoadStatus Status;


        /*********
        ** Public methods
        *********/
        /// <summary>Construct an instance.</summary>
        /// <param name="file">The original assembly file.</param>
        /// <param name="assembly">The assembly definition.</param>
        /// <param name="status">The result of the assembly load.</param>
        public AssemblyParseResult(FileInfo file, AssemblyDefinition assembly, AssemblyLoadStatus status)
        {
            this.File = file;
            this.Definition = assembly;
            this.Status = status;
        }
    }
}