在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → gitee for visualstudio 源码

gitee for visualstudio 源码

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:8.34M
  • 下载次数:12
  • 浏览次数:142
  • 发布时间:2021-06-24
  • 实例类别:C#语言基础
  • 发 布 人:parss
  • 文件格式:.zip
  • 所需积分:2
 相关标签: Studio Git TEE ITE IT

实例介绍

【实例简介】

【实例截图】

gitee for visualstudio 源码

from clipboard


【核心代码】

Gitee.VisualStudio

├── GiteeVS.sln
├── LICENSE
├── ResetEnvironment.cmd
├── appveyor.yml
├── docs
│   ├── build.md
│   └── images
│       └── option.gif
├── lib
│   ├── 14.0
│   │   ├── Microsoft.TeamFoundation.Client.dll
│   │   ├── Microsoft.TeamFoundation.Common.dll
│   │   ├── Microsoft.TeamFoundation.Controls.dll
│   │   ├── Microsoft.TeamFoundation.Git.Client.dll
│   │   ├── Microsoft.TeamFoundation.Git.Controls.dll
│   │   └── Microsoft.TeamFoundation.Git.Provider.dll
│   ├── 15.0
│   │   ├── Microsoft.TeamFoundation.Client.dll
│   │   ├── Microsoft.TeamFoundation.Common.dll
│   │   ├── Microsoft.TeamFoundation.Controls.dll
│   │   ├── Microsoft.TeamFoundation.Git.Client.dll
│   │   ├── Microsoft.TeamFoundation.Git.Controls.dll
│   │   └── Microsoft.TeamFoundation.Git.Provider.dll
│   └── 16.0
│       ├── Microsoft.TeamFoundation.Client.dll
│       ├── Microsoft.TeamFoundation.Common.dll
│       ├── Microsoft.TeamFoundation.Controls.dll
│       ├── Microsoft.TeamFoundation.Git.Client.dll
│       ├── Microsoft.TeamFoundation.Git.Controls.dll
│       └── Microsoft.TeamFoundation.Git.Provider.dll
├── nuget.config
└── src
    ├── Gitee.API.Sandbox
    │   ├── Gitee.Api.Sandbox.csproj
    │   └── Program.cs
    ├── Gitee.Api
    │   ├── ApiPartials.cs
    │   ├── Dto
    │   │   ├── CreateRepo.cs
    │   │   ├── Gists.cs
    │   │   ├── GiteeApiException.cs
    │   │   ├── Repo.cs
    │   │   └── TokenDto.cs
    │   ├── Gitee.Api.csproj
    │   ├── Nswag.nswag
    │   ├── SDK.cs
    │   └── Session.cs
    ├── Gitee.Api.Test
    │   ├── Gitee.Api.Test.csproj
    │   └── UnitTest1.cs
    ├── Gitee.TeamFoundation.14
    │   ├── Colors.cs
    │   ├── Connect
    │   │   ├── GiteeConnectSection.cs
    │   │   └── GiteeInvitationSection.cs
    │   ├── Gitee.TeamFoundation.14.csproj
    │   ├── Home
    │   │   ├── AttachmentsNavigationItem.cs
    │   │   ├── GiteeHomeSection.cs
    │   │   ├── GiteeNavigationItem.cs
    │   │   ├── IssuesNavigationItem.cs
    │   │   ├── PullRequestsNavigationItem.cs
    │   │   ├── StatisticsNavigationItem.cs
    │   │   └── WikiNavigationItem.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── Resources
    │   │   └── logo.png
    │   ├── Services
    │   │   ├── Registry.cs
    │   │   └── TeamExplorerServices.cs
    │   ├── Settings.cs
    │   ├── Sync
    │   │   └── GiteePublishSection.cs
    │   ├── ViewModels
    │   │   ├── ConnectSectionViewModel.cs
    │   │   └── PublishSectionViewModel.cs
    │   └── Views
    │       ├── ConnectSectionView.xaml
    │       ├── ConnectSectionView.xaml.cs
    │       ├── PublishSectionView.xaml
    │       └── PublishSectionView.xaml.cs
    ├── Gitee.TeamFoundation.15
    │   ├── Gitee.TeamFoundation.15.csproj
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── Gitee.TeamFoundation.16
    │   ├── Gitee.TeamFoundation.16.csproj
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── Gitee.VisualStudio
    │   ├── Gitee.VisualStudio.csproj
    │   ├── GiteePackage.cs
    │   ├── Helpers
    │   │   ├── CredentialType.cs
    │   │   ├── NativeMethods.cs
    │   │   ├── OutputWindowHelper.cs
    │   │   ├── PersistenceType.cs
    │   │   └── SecureStringHelper.cs
    │   ├── LICENSE.txt
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── Resources
    │   │   ├── default_org_avatar.png
    │   │   ├── default_user_avatar.png
    │   │   ├── gitignores
    │   │   │   ├── Actionscript
    │   │   │   ├── Ada
    │   │   │   ├── Agda
    │   │   │   ├── Android
    │   │   │   ├── AppEngine
    │   │   │   ├── AppceleratorTitanium
    │   │   │   ├── ArchLinuxPackages
    │   │   │   ├── Autotools
    │   │   │   ├── C
    │   │   │   ├── C
    │   │   │   ├── CFWheels
    │   │   │   ├── CMake
    │   │   │   ├── CUDA
    │   │   │   ├── CakePHP
    │   │   │   ├── ChefCookbook
    │   │   │   ├── Clojure
    │   │   │   ├── CodeIgniter
    │   │   │   ├── CommonLisp
    │   │   │   ├── Composer
    │   │   │   ├── Concrete5
    │   │   │   ├── Coq
    │   │   │   ├── CraftCMS
    │   │   │   ├── D
    │   │   │   ├── DM
    │   │   │   ├── Dart
    │   │   │   ├── Delphi
    │   │   │   ├── Drupal
    │   │   │   ├── EPiServer
    │   │   │   ├── Eagle
    │   │   │   ├── Elisp
    │   │   │   ├── Elixir
    │   │   │   ├── Elm
    │   │   │   ├── Erlang
    │   │   │   ├── ExpressionEngine
    │   │   │   ├── ExtJs
    │   │   │   ├── Fancy
    │   │   │   ├── Finale
    │   │   │   ├── ForceDotCom
    │   │   │   ├── Fortran
    │   │   │   ├── FuelPHP
    │   │   │   ├── GWT
    │   │   │   ├── Gcov
    │   │   │   ├── GitBook
    │   │   │   ├── Go
    │   │   │   ├── Gradle
    │   │   │   ├── Grails
    │   │   │   ├── Haskell
    │   │   │   ├── IGORPro
    │   │   │   ├── Idris
    │   │   │   ├── Java
    │   │   │   ├── Jboss
    │   │   │   ├── Jekyll
    │   │   │   ├── Joomla
    │   │   │   ├── Julia
    │   │   │   ├── KiCad
    │   │   │   ├── Kohana
    │   │   │   ├── LabVIEW
    │   │   │   ├── Laravel
    │   │   │   ├── Leiningen
    │   │   │   ├── LemonStand
    │   │   │   ├── Lilypond
    │   │   │   ├── Lithium
    │   │   │   ├── Lua
    │   │   │   ├── Magento
    │   │   │   ├── Maven
    │   │   │   ├── Mercury
    │   │   │   ├── MetaProgrammingSystem
    │   │   │   ├── Nanoc
    │   │   │   ├── Nim
    │   │   │   ├── Node
    │   │   │   ├── OCaml
    │   │   │   ├── Objective-C
    │   │   │   ├── Opa
    │   │   │   ├── OpenCart
    │   │   │   ├── OracleForms
    │   │   │   ├── Packer
    │   │   │   ├── Perl
    │   │   │   ├── Phalcon
    │   │   │   ├── PlayFramework
    │   │   │   ├── Plone
    │   │   │   ├── Prestashop
    │   │   │   ├── Processing
    │   │   │   ├── Python
    │   │   │   ├── Qooxdoo
    │   │   │   ├── Qt
    │   │   │   ├── R
    │   │   │   ├── ROS
    │   │   │   ├── Rails
    │   │   │   ├── RhodesRhomobile
    │   │   │   ├── Ruby
    │   │   │   ├── Rust
    │   │   │   ├── SCons
    │   │   │   ├── Sass
    │   │   │   ├── Scala
    │   │   │   ├── Scheme
    │   │   │   ├── Scrivener
    │   │   │   ├── Sdcc
    │   │   │   ├── SeamGen
    │   │   │   ├── SketchUp
    │   │   │   ├── Smalltalk
    │   │   │   ├── Stella
    │   │   │   ├── SugarCRM
    │   │   │   ├── Swift
    │   │   │   ├── Symfony
    │   │   │   ├── SymphonyCMS
    │   │   │   ├── TeX
    │   │   │   ├── Terraform
    │   │   │   ├── Textpattern
    │   │   │   ├── TurboGears2
    │   │   │   ├── Typo3
    │   │   │   ├── Umbraco
    │   │   │   ├── Unity
    │   │   │   ├── UnrealEngine
    │   │   │   ├── VVVV
    │   │   │   ├── VisualStudio
    │   │   │   ├── Waf
    │   │   │   ├── WordPress
    │   │   │   ├── Xojo
    │   │   │   ├── Yeoman
    │   │   │   ├── Yii
    │   │   │   ├── ZendFramework
    │   │   │   ├── Zephir
    │   │   │   └── index
    │   │   ├── licenses
    │   │   │   ├── Affero GPL
    │   │   │   ├── Apache License 2.0
    │   │   │   ├── Artistic License 2.0
    │   │   │   ├── BSD (3-Clause) License
    │   │   │   ├── BSD 2-clause License
    │   │   │   ├── Eclipse Public License 1.0
    │   │   │   ├── GPL v2
    │   │   │   ├── GPL v3
    │   │   │   ├── LGPL v2.1
    │   │   │   ├── LGPL v3
    │   │   │   ├── MIT License
    │   │   │   ├── Mozilla Public License 2.0
    │   │   │   ├── WTFPL
    │   │   │   ├── Zlib
    │   │   │   └── index
    │   │   ├── logo_128x128.png
    │   │   ├── logo_32x32@2x.png
    │   │   └── preview_200x200.png
    │   ├── Services
    │   │   ├── Credential.cs
    │   │   ├── GitAnalysis.cs
    │   │   ├── GitService.cs
    │   │   ├── Messenger.cs
    │   │   ├── ShellService.cs
    │   │   ├── Storage.cs
    │   │   ├── ViewFactory.cs
    │   │   └── WebService.cs
    │   ├── VSCommandTable.cs
    │   ├── VSCommandTable.vsct
    │   ├── app.config
    │   ├── source.extension.cs
    │   ├── source.extension.ico
    │   ├── source.extension.resx
    │   └── source.extension.vsixmanifest
    ├── Gitee.VisualStudio.Shared
    │   ├── Assets
    │   │   └── Controls.xaml
    │   ├── Controls
    │   │   ├── BusyIndicator.cs
    │   │   ├── BusyIndicator.xaml
    │   │   ├── IconedTextBox.cs
    │   │   ├── IconedTextBox.xaml
    │   │   └── Octicons
    │   │       ├── Octicon.cs
    │   │       ├── OcticonImage.cs
    │   │       ├── OcticonImage.xaml
    │   │       ├── OcticonPath.cs
    │   │       ├── OcticonPaths.Designer.cs
    │   │       └── OcticonPaths.resx
    │   ├── Dialog.cs
    │   ├── Extensions.collections.cs
    │   ├── Gitee.VisualStudio.Shared.csproj
    │   ├── Helpers
    │   │   ├── Behaviors
    │   │   │   └── RepositionPopupBehavior.cs
    │   │   ├── Bindable.cs
    │   │   ├── Commands
    │   │   │   ├── DelegateCommand.cs
    │   │   │   └── WeakEventHandlerManager.cs
    │   │   ├── ThreadingHelper.cs
    │   │   └── Validatable.cs
    │   ├── IDialog.cs
    │   ├── IGitService.cs
    │   ├── IMessenger.cs
    │   ├── IServiceProviderExtensions.cs
    │   ├── IShellService.cs
    │   ├── IStorage.cs
    │   ├── ITeamExplorerServices.cs
    │   ├── IUIProvider.cs
    │   ├── IViewFactory.cs
    │   ├── IWebService.cs
    │   ├── NotificationAwareObject.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── Repository.cs
    │   ├── SharedResources.cs
    │   ├── Strings.Designer.cs
    │   ├── Strings.resx
    │   ├── Strings.zh-Hans.resx
    │   ├── Themes
    │   │   └── Generic.xaml
    │   ├── ViewTypes.cs
    │   └── app.config
    ├── Gitee.VisualStudio.UI
    │   ├── Gitee.VisualStudio.UI.csproj
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   └── Resources.resx
    │   ├── Resources
    │   │   └── images
    │   │       ├── github.png
    │   │       ├── logo.png
    │   │       ├── logo_gitee_light_cn_with_domain_name.png
    │   │       ├── osc.png
    │   │       ├── password.png
    │   │       ├── qq.png
    │   │       ├── user.png
    │   │       ├── weibo.png
    │   │       └── windows.png
    │   ├── ViewModels
    │   │   ├── CloneViewModel.cs
    │   │   ├── CreateSnippetViewModel.cs
    │   │   ├── CreateViewModel.cs
    │   │   ├── LoginViewModel.cs
    │   │   └── ProjectViewModel.cs
    │   ├── Views
    │   │   ├── CloneView.xaml
    │   │   ├── CloneView.xaml.cs
    │   │   ├── CreateSnippetView.xaml
    │   │   ├── CreateSnippetView.xaml.cs
    │   │   ├── CreateView.xaml
    │   │   ├── CreateView.xaml.cs
    │   │   ├── LoginView.xaml
    │   │   └── LoginView.xaml.cs
    │   └── app.config
    └── common
        ├── Key.snk
        ├── SDKConfig.cs.Template
        └── SolutionInfo.cs

47 directories, 303 files



标签: Studio Git TEE ITE IT

实例下载地址

gitee for visualstudio 源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警