├── Docs ├── TFSEvolution_Documentation.docx ├── TFSEvolution_HowToUse.docx └── TFSWebService_Documentation.docx ├── LICENSE ├── README.md ├── TFSEvolution ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── LICENSE.txt ├── TFSDataAccessPortable │ ├── DataContracts │ │ ├── AccountContract.cs │ │ ├── BuildContract.cs │ │ ├── ChangesetContract.cs │ │ ├── DefaultListContract.cs │ │ ├── DefaultValueContract.cs │ │ ├── PersonContract.cs │ │ ├── ProfileContract.cs │ │ ├── ProjectContract.cs │ │ ├── TeamContract.cs │ │ ├── WorkItemLinkContract.cs │ │ └── WorkitemChangeData.cs │ ├── DataModel │ │ ├── AccountData.cs │ │ ├── AuthenticationData.cs │ │ ├── BuildEventData.cs │ │ ├── BurnDownPointData.cs │ │ ├── CheckinEventData.cs │ │ ├── PersonData.cs │ │ ├── ProcessTemplate.cs │ │ ├── ProjectData.cs │ │ ├── SprintData.cs │ │ ├── TeamData.cs │ │ ├── TeamTFSData.cs │ │ ├── UserProfileData.cs │ │ └── WorkItemData.cs │ ├── Misc │ │ ├── DescriptionAttribute.cs │ │ └── Extensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TFSClient.cs │ ├── TFSDataAccessPortable.csproj │ ├── TFSDataAccessPortable.csproj.vspscc │ ├── TFSDataAccessPortable.licenseheader │ └── packages.config ├── TFSEvolution.sln └── TFSEvolution │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── Background.jpg │ ├── HighDist.png │ ├── Logo.scale-100.png │ ├── Logo.scale-140.png │ ├── Logo.scale-180.png │ ├── Logo.scale-80.png │ ├── LowDist.png │ ├── MedDist.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-140.png │ ├── SplashScreen.scale-180.png │ ├── Square30x30Logo.scale-100.png │ ├── Square30x30Logo.scale-140.png │ ├── Square30x30Logo.scale-180.png │ ├── Square30x30Logo.scale-80.png │ ├── Square310x310Logo.scale-100.png │ ├── Square310x310Logo.scale-140.png │ ├── Square310x310Logo.scale-180.png │ ├── Square310x310Logo.scale-80.png │ ├── Square70x100.scale-100.png │ ├── Square70x100.scale-140.png │ ├── Square70x100.scale-180.png │ ├── Square70x100.scale-80.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-140.png │ ├── StoreLogo.scale-180.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-140.png │ ├── Wide310x150Logo.scale-180.png │ ├── Wide310x150Logo.scale-80.png │ └── penclick.wav │ ├── Auth │ ├── AuthenticationToken.cs │ ├── Authenticator.cs │ ├── BasicAuthenticator.cs │ ├── IAuthenticator.cs │ └── OAuthAuthenticator.cs │ ├── Common │ ├── BindableBase.cs │ ├── EventTemplateSelector.cs │ ├── LinkCommand.cs │ ├── NavigationHelper.cs │ ├── ObservableDictionary.cs │ ├── ProjectTemplateSelector.cs │ ├── RelayCommand.cs │ └── SuspensionManager.cs │ ├── Controls │ ├── BurndownControl.xaml │ ├── BurndownControl.xaml.cs │ ├── CircularProgressBar.xaml │ ├── CircularProgressBar.xaml.cs │ ├── EditableWorkItem.xaml │ ├── EditableWorkItem.xaml.cs │ ├── EventFlipControl.xaml │ ├── EventFlipControl.xaml.cs │ ├── LoggedInUser.xaml │ ├── LoggedInUser.xaml.cs │ ├── NavigationBarControl │ │ ├── NavigationBarControl.xaml │ │ └── NavigationBarControl.xaml.cs │ ├── SinglePBIControl.xaml │ ├── SinglePBIControl.xaml.cs │ ├── SprintStatusInfoControl.xaml │ ├── SprintStatusInfoControl.xaml.cs │ ├── TaskboardSingleRowControl.xaml │ ├── TaskboardSingleRowControl.xaml.cs │ ├── TaskboardWorkItem.xaml │ ├── TaskboardWorkItem.xaml.cs │ └── VariableGridView.cs │ ├── Converters │ ├── AssignedToToUserpicSourceConverter.cs │ ├── BooleanToOpacityConverter.cs │ ├── BooleanToVisibilityConverter.cs │ ├── OperatorPercentToNoOperatorPercent.cs │ ├── ParallaxConverter.cs │ ├── PercentToColorConverters.cs │ ├── PercentToVisibilityConverter.cs │ ├── PositivePercentToNegativePercent.cs │ ├── PositivePercentToRoundedNegativePercent.cs │ ├── RemainingWorkToSizeConverter.cs │ ├── ReverseBooleanToVisibilityConverter.cs │ ├── StateToBrushConverter.cs │ └── StateToIconConverter.cs │ ├── Data │ ├── Context.cs │ └── DataSource.cs │ ├── Design │ └── projectGuides.guides │ ├── Fonts │ ├── Prime Light.otf │ └── Prime Regular.otf │ ├── Images │ ├── BuildDefault.png │ ├── BuildFailed.png │ ├── BuildPartiallySucceeded.png │ ├── BuildStopped.png │ ├── BuildSuccess.png │ ├── BurndownDisabled.png │ ├── CheckInIcon.png │ ├── DashboardLogo.png │ ├── LinkGreenBackground.png │ ├── LinkRedBackground.png │ ├── ProjectBackBlue.png │ ├── ProjectBackDarkBlue.png │ ├── ProjectBackGreen.png │ ├── ProjectBackGrey.png │ ├── ProjectBackPurple.png │ ├── ProjectIcon.png │ ├── Rocket.png │ ├── SprintStatusDisabled.png │ ├── TeamProject1.png │ ├── TeamProject2.png │ ├── Test.png │ └── WorkItemIcons │ │ ├── Bug.png │ │ ├── Impediment.png │ │ ├── PBI1.png │ │ └── Task.png │ ├── Misc │ ├── Extensions.cs │ ├── Resources.xaml │ └── StandardStyles.xaml │ ├── Navigation │ ├── INavigationService.cs │ ├── Navigator.cs │ └── ServerInfo.cs │ ├── Package.appxmanifest │ ├── Properties │ └── AssemblyInfo.cs │ ├── TFSEvolution.csproj │ ├── ViewModels │ ├── BugItem.cs │ ├── BuildEventItem.cs │ ├── CheckinEventItem.cs │ ├── FeatureItem.cs │ ├── ImpedimentItem.cs │ ├── ProductBacklogItem.cs │ ├── SettingsViewModel.cs │ ├── Sprint.cs │ ├── TaskItem.cs │ ├── Team.cs │ ├── TeamMember.cs │ ├── TeamProject.cs │ ├── TestCaseItem.cs │ ├── User.cs │ ├── UserInformation.cs │ └── WorkItem.cs │ ├── Views │ ├── DashboardPage.xaml │ ├── DashboardPage.xaml.cs │ ├── ProjectSelectionPage.xaml │ ├── ProjectSelectionPage.xaml.cs │ ├── ServerSettingsFlyout.xaml │ ├── ServerSettingsFlyout.xaml.cs │ ├── ShowcaseSelectionPage.xaml │ ├── ShowcaseSelectionPage.xaml.cs │ ├── Taskboard.xaml │ └── Taskboard.xaml.cs │ └── packages.config └── TFSWebService ├── LICENSE.txt ├── TFSWebService.Website ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Areas │ └── HelpPage │ │ ├── ApiDescriptionExtensions.cs │ │ ├── App_Start │ │ └── HelpPageConfig.cs │ │ ├── Controllers │ │ └── HelpController.cs │ │ ├── HelpPage.css │ │ ├── HelpPageAreaRegistration.cs │ │ ├── HelpPageConfigurationExtensions.cs │ │ ├── ModelDescriptions │ │ ├── CollectionModelDescription.cs │ │ ├── ComplexTypeModelDescription.cs │ │ ├── DictionaryModelDescription.cs │ │ ├── EnumTypeModelDescription.cs │ │ ├── EnumValueDescription.cs │ │ ├── IModelDocumentationProvider.cs │ │ ├── KeyValuePairModelDescription.cs │ │ ├── ModelDescription.cs │ │ ├── ModelDescriptionGenerator.cs │ │ ├── ModelNameAttribute.cs │ │ ├── ModelNameHelper.cs │ │ ├── ParameterAnnotation.cs │ │ ├── ParameterDescription.cs │ │ └── SimpleTypeModelDescription.cs │ │ ├── Models │ │ └── HelpPageApiModel.cs │ │ ├── SampleGeneration │ │ ├── HelpPageSampleGenerator.cs │ │ ├── HelpPageSampleKey.cs │ │ ├── ImageSample.cs │ │ ├── InvalidSample.cs │ │ ├── ObjectGenerator.cs │ │ ├── SampleDirection.cs │ │ └── TextSample.cs │ │ ├── Views │ │ ├── Help │ │ │ ├── Api.cshtml │ │ │ ├── DisplayTemplates │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ ├── CollectionModelDescription.cshtml │ │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ ├── ImageSample.cshtml │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ │ ├── ModelDescriptionLink.cshtml │ │ │ │ ├── Parameters.cshtml │ │ │ │ ├── Samples.cshtml │ │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ │ └── TextSample.cshtml │ │ │ ├── Index.cshtml │ │ │ └── ResourceModel.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ └── XmlDocumentationProvider.cs ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Controllers │ ├── EventController.cs │ ├── HomeController.cs │ ├── SprintsController.cs │ ├── TeaminfoController.cs │ └── ValuesController.cs ├── Global.asax ├── Global.asax.cs ├── Helpers │ ├── EncryptionHelper.cs │ └── SerializationService.cs ├── Misc │ ├── Extensions.cs │ └── TFSClient.cs ├── Models │ ├── Area.cs │ ├── FieldChange.cs │ ├── Iteration.cs │ ├── Sprint.cs │ ├── TeamInfo.cs │ └── WorkitemChangeEntity.cs ├── Project_Readme.html ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ ├── TFStest2014.pubxml │ │ ├── oss-tfs - FTP.pubxml │ │ ├── oss-tfs - Web Deploy.pubxml │ │ └── tfsexpert-oauth.pubxml ├── Scripts │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── TFSWebService.Website.csproj ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config └── TFSWebService.sln /Docs/TFSEvolution_Documentation.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/Docs/TFSEvolution_Documentation.docx -------------------------------------------------------------------------------- /Docs/TFSEvolution_HowToUse.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/Docs/TFSEvolution_HowToUse.docx -------------------------------------------------------------------------------- /Docs/TFSWebService_Documentation.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/Docs/TFSWebService_Documentation.docx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/README.md -------------------------------------------------------------------------------- /TFSEvolution/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/.nuget/NuGet.Config -------------------------------------------------------------------------------- /TFSEvolution/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/.nuget/NuGet.exe -------------------------------------------------------------------------------- /TFSEvolution/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/.nuget/NuGet.targets -------------------------------------------------------------------------------- /TFSEvolution/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/LICENSE.txt -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataContracts/AccountContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataContracts/AccountContract.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataContracts/BuildContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataContracts/BuildContract.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataContracts/ChangesetContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataContracts/ChangesetContract.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataContracts/DefaultListContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataContracts/DefaultListContract.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataContracts/DefaultValueContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataContracts/DefaultValueContract.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataContracts/PersonContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataContracts/PersonContract.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataContracts/ProfileContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataContracts/ProfileContract.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataContracts/ProjectContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataContracts/ProjectContract.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataContracts/TeamContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataContracts/TeamContract.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataContracts/WorkItemLinkContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataContracts/WorkItemLinkContract.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataContracts/WorkitemChangeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataContracts/WorkitemChangeData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/AccountData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/AccountData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/AuthenticationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/AuthenticationData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/BuildEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/BuildEventData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/BurnDownPointData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/BurnDownPointData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/CheckinEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/CheckinEventData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/PersonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/PersonData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/ProcessTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/ProcessTemplate.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/ProjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/ProjectData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/SprintData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/SprintData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/TeamData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/TeamData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/TeamTFSData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/TeamTFSData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/UserProfileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/UserProfileData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/DataModel/WorkItemData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/DataModel/WorkItemData.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/Misc/DescriptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/Misc/DescriptionAttribute.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/Misc/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/Misc/Extensions.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/TFSClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/TFSClient.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/TFSDataAccessPortable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/TFSDataAccessPortable.csproj -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/TFSDataAccessPortable.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/TFSDataAccessPortable.csproj.vspscc -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/TFSDataAccessPortable.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/TFSDataAccessPortable.licenseheader -------------------------------------------------------------------------------- /TFSEvolution/TFSDataAccessPortable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSDataAccessPortable/packages.config -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution.sln -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/App.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/App.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Background.jpg -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/HighDist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/HighDist.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Logo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Logo.scale-140.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Logo.scale-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Logo.scale-180.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Logo.scale-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Logo.scale-80.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/LowDist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/LowDist.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/MedDist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/MedDist.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/SplashScreen.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/SplashScreen.scale-140.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/SplashScreen.scale-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/SplashScreen.scale-180.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Square30x30Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Square30x30Logo.scale-100.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Square30x30Logo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Square30x30Logo.scale-140.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Square30x30Logo.scale-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Square30x30Logo.scale-180.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Square30x30Logo.scale-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Square30x30Logo.scale-80.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Square310x310Logo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Square310x310Logo.scale-140.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Square310x310Logo.scale-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Square310x310Logo.scale-180.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Square310x310Logo.scale-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Square310x310Logo.scale-80.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Square70x100.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Square70x100.scale-100.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Square70x100.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Square70x100.scale-140.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Square70x100.scale-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Square70x100.scale-180.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Square70x100.scale-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Square70x100.scale-80.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/StoreLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/StoreLogo.scale-140.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/StoreLogo.scale-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/StoreLogo.scale-180.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Wide310x150Logo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Wide310x150Logo.scale-140.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Wide310x150Logo.scale-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Wide310x150Logo.scale-180.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/Wide310x150Logo.scale-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/Wide310x150Logo.scale-80.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Assets/penclick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Assets/penclick.wav -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Auth/AuthenticationToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Auth/AuthenticationToken.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Auth/Authenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Auth/Authenticator.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Auth/BasicAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Auth/BasicAuthenticator.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Auth/IAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Auth/IAuthenticator.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Auth/OAuthAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Auth/OAuthAuthenticator.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Common/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Common/BindableBase.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Common/EventTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Common/EventTemplateSelector.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Common/LinkCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Common/LinkCommand.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Common/NavigationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Common/NavigationHelper.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Common/ObservableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Common/ObservableDictionary.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Common/ProjectTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Common/ProjectTemplateSelector.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Common/RelayCommand.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Common/SuspensionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Common/SuspensionManager.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/BurndownControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/BurndownControl.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/BurndownControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/BurndownControl.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/CircularProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/CircularProgressBar.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/CircularProgressBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/CircularProgressBar.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/EditableWorkItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/EditableWorkItem.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/EditableWorkItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/EditableWorkItem.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/EventFlipControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/EventFlipControl.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/EventFlipControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/EventFlipControl.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/LoggedInUser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/LoggedInUser.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/LoggedInUser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/LoggedInUser.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/NavigationBarControl/NavigationBarControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/NavigationBarControl/NavigationBarControl.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/NavigationBarControl/NavigationBarControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/NavigationBarControl/NavigationBarControl.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/SinglePBIControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/SinglePBIControl.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/SinglePBIControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/SinglePBIControl.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/SprintStatusInfoControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/SprintStatusInfoControl.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/SprintStatusInfoControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/SprintStatusInfoControl.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/TaskboardSingleRowControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/TaskboardSingleRowControl.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/TaskboardSingleRowControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/TaskboardSingleRowControl.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/TaskboardWorkItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/TaskboardWorkItem.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/TaskboardWorkItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/TaskboardWorkItem.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Controls/VariableGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Controls/VariableGridView.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/AssignedToToUserpicSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/AssignedToToUserpicSourceConverter.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/BooleanToOpacityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/BooleanToOpacityConverter.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/OperatorPercentToNoOperatorPercent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/OperatorPercentToNoOperatorPercent.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/ParallaxConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/ParallaxConverter.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/PercentToColorConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/PercentToColorConverters.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/PercentToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/PercentToVisibilityConverter.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/PositivePercentToNegativePercent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/PositivePercentToNegativePercent.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/PositivePercentToRoundedNegativePercent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/PositivePercentToRoundedNegativePercent.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/RemainingWorkToSizeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/RemainingWorkToSizeConverter.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/ReverseBooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/ReverseBooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/StateToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/StateToBrushConverter.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Converters/StateToIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Converters/StateToIconConverter.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Data/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Data/Context.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Data/DataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Data/DataSource.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Design/projectGuides.guides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Design/projectGuides.guides -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Fonts/Prime Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Fonts/Prime Light.otf -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Fonts/Prime Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Fonts/Prime Regular.otf -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/BuildDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/BuildDefault.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/BuildFailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/BuildFailed.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/BuildPartiallySucceeded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/BuildPartiallySucceeded.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/BuildStopped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/BuildStopped.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/BuildSuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/BuildSuccess.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/BurndownDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/BurndownDisabled.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/CheckInIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/CheckInIcon.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/DashboardLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/DashboardLogo.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/LinkGreenBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/LinkGreenBackground.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/LinkRedBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/LinkRedBackground.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/ProjectBackBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/ProjectBackBlue.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/ProjectBackDarkBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/ProjectBackDarkBlue.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/ProjectBackGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/ProjectBackGreen.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/ProjectBackGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/ProjectBackGrey.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/ProjectBackPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/ProjectBackPurple.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/ProjectIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/ProjectIcon.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/Rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/Rocket.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/SprintStatusDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/SprintStatusDisabled.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/TeamProject1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/TeamProject1.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/TeamProject2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/TeamProject2.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/Test.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/WorkItemIcons/Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/WorkItemIcons/Bug.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/WorkItemIcons/Impediment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/WorkItemIcons/Impediment.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/WorkItemIcons/PBI1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/WorkItemIcons/PBI1.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Images/WorkItemIcons/Task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Images/WorkItemIcons/Task.png -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Misc/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Misc/Extensions.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Misc/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Misc/Resources.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Misc/StandardStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Misc/StandardStyles.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Navigation/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Navigation/INavigationService.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Navigation/Navigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Navigation/Navigator.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Navigation/ServerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Navigation/ServerInfo.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Package.appxmanifest -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/TFSEvolution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/TFSEvolution.csproj -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/BugItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/BugItem.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/BuildEventItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/BuildEventItem.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/CheckinEventItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/CheckinEventItem.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/FeatureItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/FeatureItem.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/ImpedimentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/ImpedimentItem.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/ProductBacklogItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/ProductBacklogItem.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/Sprint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/Sprint.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/TaskItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/TaskItem.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/Team.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/TeamMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/TeamMember.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/TeamProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/TeamProject.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/TestCaseItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/TestCaseItem.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/User.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/UserInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/UserInformation.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/ViewModels/WorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/ViewModels/WorkItem.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Views/DashboardPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Views/DashboardPage.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Views/DashboardPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Views/DashboardPage.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Views/ProjectSelectionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Views/ProjectSelectionPage.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Views/ProjectSelectionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Views/ProjectSelectionPage.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Views/ServerSettingsFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Views/ServerSettingsFlyout.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Views/ServerSettingsFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Views/ServerSettingsFlyout.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Views/ShowcaseSelectionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Views/ShowcaseSelectionPage.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Views/ShowcaseSelectionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Views/ShowcaseSelectionPage.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Views/Taskboard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Views/Taskboard.xaml -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/Views/Taskboard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/Views/Taskboard.xaml.cs -------------------------------------------------------------------------------- /TFSEvolution/TFSEvolution/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSEvolution/TFSEvolution/packages.config -------------------------------------------------------------------------------- /TFSWebService/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/LICENSE.txt -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/App_Start/HelpPageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/App_Start/HelpPageConfig.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Controllers/HelpController.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/HelpPageAreaRegistration.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/ImageSample.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/ResourceModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Help/ResourceModel.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Areas/HelpPage/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Areas/HelpPage/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Content/Site.css -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Content/bootstrap.css -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Content/bootstrap.min.css -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Controllers/EventController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Controllers/EventController.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Controllers/HomeController.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Controllers/SprintsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Controllers/SprintsController.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Controllers/TeaminfoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Controllers/TeaminfoController.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Global.asax -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Global.asax.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Helpers/EncryptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Helpers/EncryptionHelper.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Helpers/SerializationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Helpers/SerializationService.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Misc/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Misc/Extensions.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Misc/TFSClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Misc/TFSClient.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Models/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Models/Area.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Models/FieldChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Models/FieldChange.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Models/Iteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Models/Iteration.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Models/Sprint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Models/Sprint.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Models/TeamInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Models/TeamInfo.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Models/WorkitemChangeEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Models/WorkitemChangeEntity.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Project_Readme.html -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Properties/PublishProfiles/TFStest2014.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Properties/PublishProfiles/TFStest2014.pubxml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Properties/PublishProfiles/oss-tfs - FTP.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Properties/PublishProfiles/oss-tfs - FTP.pubxml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Properties/PublishProfiles/oss-tfs - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Properties/PublishProfiles/oss-tfs - Web Deploy.pubxml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Properties/PublishProfiles/tfsexpert-oauth.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Properties/PublishProfiles/tfsexpert-oauth.pubxml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Scripts/_references.js -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Scripts/bootstrap.js -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Scripts/respond.js -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Scripts/respond.min.js -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/TFSWebService.Website.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/TFSWebService.Website.csproj -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Views/Web.config -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Web.Debug.config -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Web.Release.config -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/Web.config -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/favicon.ico -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.Website/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.Website/packages.config -------------------------------------------------------------------------------- /TFSWebService/TFSWebService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conplementAG/TFSEvolution/HEAD/TFSWebService/TFSWebService.sln --------------------------------------------------------------------------------