Beispiel #1
0
        internal PythonExtensionReferenceNode(PythonProjectNode root, ProjectElement element, string filename)
            : base(root, element)
        {
            Utilities.ArgumentNotNullOrEmpty("filename", filename);
            _filename = CommonUtils.GetAbsoluteFilePath(root.ProjectHome, filename);

            AnalyzeReference(root.GetInterpreter() as IPythonInterpreterWithProjectReferences);
            InitializeFileChangeEvents();
        }
 public PythonAssemblyReferenceNode(PythonProjectNode root, string assemblyPath)
     : base(root, assemblyPath)
 {
     AnalyzeReference(root.GetInterpreter() as IPythonInterpreterWithProjectReferences);
 }
 public PythonAssemblyReferenceNode(PythonProjectNode root, ProjectElement element)
     : base(root, element)
 {
     AnalyzeReference(root.GetInterpreter() as IPythonInterpreterWithProjectReferences);
 }