aboutsummaryrefslogtreecommitdiffstats
path: root/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/00d34b05b2b6001910f29a7c8b54f9ea
stat options
Period:
Authors:

Commits per author per week (path 'Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/00d34b05b2b6001910f29a7c8b54f9ea')

AuthorW25 2026W26 2026W27 2026W28 2026Total
Total00000
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media.Imaging;

namespace Tango.Scripting.IDE.ProjectItems
{
    public class ReferenceAssemblyItem : ProjectItem
    {
        public String Path { get; set; }
        public override BitmapSource Image => GetImage("Images/Reference.png");

        public override FrameworkElement OnGetView()
        {
            return null;
        }

        public override bool CanOpen => false;
    }
}