Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First try #1

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions .vsts/microsoft.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
resources:
- repo: self

queue:
name: Hosted VS2017

variables:
dockerRegistryConnectionEndpoint: '69a1a8df-4cb8-46ce-9e6e-e8197ff93ded' # VSTS service connection endpoint "Docker Registry"
dockerHostEndpoint: '3f5ecfa0-cdda-4405-aad7-e3e5cc508d2a' # VSTS service connection endpoint "Docker Host"
imageName: '$(Build.Repository.Name):$(Build.BuildId)'

steps:
- task: Docker@0
inputs:
containerregistrytype: 'Container Registry'
dockerRegistryConnection: '$(dockerRegistryConnectionEndpoint)'
action: 'Build an image'
dockerFile: '**/Dockerfile'
buildArguments: |
# arg1=val1
# arg2=val2
defaultContext: true
imageName: '$(imageName)'
qualifyImageName: true
additionalImageTags: |
# Tag1
# Tag2
includeSourceTags: false
includeLatestTag: false
dockerHostEndpoint: '$(dockerHostEndpoint)'
enforceDockerNamingConvention: true
memory: 512MB

- task: Docker@0
inputs:
containerregistrytype: 'Container Registry'
dockerRegistryConnection: '$(dockerRegistryConnectionEndpoint)'
action: 'Push an image'
imageName: '$(imageName)'
includeSourceTags: false
includeLatestTag: false
imageDigestFile: 'repository_digest'
dockerHostEndpoint: '$(dockerHostEndpoint)'




8 changes: 8 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
Team Explorer Everywhere Plug-in for Eclipse

dsasga
asasads bsdb erhwehw
dbasdb


Copyright (c) Microsoft Corporation




All rights reserved.

MIT License
Expand Down
3 changes: 3 additions & 0 deletions Localization.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
We’re using an open localization platform to regularly integrate community feedback and contributions into our products.




##Where are our translations?
* Go to [www.transifex.com](https://www.transifex.com/), sign in if you have a **Transifex** account, sign up for an account if you don’t have one.

Expand Down
2 changes: 2 additions & 0 deletions jgit-patches/0001-Add-NTLM-authentication-scheme.patch
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
dbabdfs

From 792b253ad595a150249b8cce98ebd67715865e49 Mon Sep 17 00:00:00 2001
From: Alex Rukhlin <[email protected]>
Date: Wed, 6 Jan 2016 11:08:12 -0500
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
# archives may contain both plug-ins for these graphical envrionments
# and a properties file if the policy runs in both the graphical
# and command-line clients.
#########################################################

# Defines the policy ID implemented by a class in this archive.
id=com.teamprise.checkinpolicies.build.BuildPolicy-1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See License.txt in the repository root.

//



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

package com.microsoft.tfs.core.pendingcheckin.events;


import com.microsoft.tfs.core.clients.CoreClientEvent;
import com.microsoft.tfs.core.clients.versioncontrol.events.EventSource;
import com.microsoft.tfs.core.pendingcheckin.PendingCheckinPendingChanges;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,7 @@

package com.microsoft.tfs.core.pendingcheckin.events;


/*

*/
import java.util.EventListener;

import com.microsoft.tfs.core.pendingcheckin.PendingCheckinPendingChanges;

/**
Expand Down