Boo.Lang.Compiler.Steps.EmitAssembly.GetAssemblySimpleName C# (CSharp) Method

GetAssemblySimpleName() private method

private GetAssemblySimpleName ( string fname ) : string
fname string
return string
        string GetAssemblySimpleName(string fname)
        {
            return Path.GetFileNameWithoutExtension(fname);
        }
EmitAssembly