Project Server and Visual Studio Online

With the release of Visual Studio Online, will we be able link Project Server 2013 to it, as we can with our on-prem TFS server?
Thanks in advance,
Tim

Hello,
as Paul mentioned – out of the box there is no integration solution implemented as it was offered by MS for the on-prem versions of the two products.
Microsoft however offers a set of APIs for the online and on-prem versions of those tools which dependant on the use case can be used to achieve the integration (Project Server: CSOM, JSOM, odata; Visual Studio Online: odata).
You can custom code against those APIs or reuse standard products which are available on the market by partners which offer those scenarios between Visual Studio Online and Project Server on-prem and online (e.g. CS Connect by Campana & Schott -
http://www.campana-schott.com/en/technologies/cs-connect?qll=mf).
Please let me know if you need further information…
Bastian

Similar Messages

  • Release management with Azure and Visual Studio Online (Cloud TFS)

    What strategy would you use to manage the releasing of versioned software to Azure cloud services (web and worker roles)? We are not looking for continuous integration. We are using Visual Studio 2013 and Visual Studio Online (Cloud TFS).
    At one point, we were releasing straight from Visual Studio using the Azure Cloud Project Publish tool. This is really bad practice in my opinion as you can never be sure what you are really releasing. Additionally, there is no automated control on the labeling
    or branching of code, or the running of unit tests and code analysis checks.
    Next, we employed Release builds on Visual Studio Online. Before deployment, one would edit the appropriate Build Definition (whether it be for Test or Production by and filling in the code label (under the "Get Version" build property) that is to
    be released. This would then get the appropriate code (by the label specified), build it, and release it to whatever cloud service is specified in the targeted Cloud Project profile (this is using the AzureContinuousDeployment.11.xaml template).
    There is still a degree of manual intervention involved. Also, the fact that a version of code is built every time before it is released is not ideal (as far as I understand it would be better if it was packaged once).
    Microsoft Release Management tools
    look ideal for the job, but are not supported with Visual Studio Online.
    Is there a better way of handling our releases?

    /waves hand.. These are not the tools you seek. You are looking for continuous integration.
    Although CI has the word continuous in there, it does not mean "all the time, every checkin". It can easily refer only to those bits you want to release - -and the way to tell the system which bits you want released is to merge them to a Releases
    branch.
    If you do this, not only do you get all the joy of controlled CI, but you guarantee what you release is exactly what is controlled in your SCM - under the Releases branch, preferably tagged or otherwise noted as a particular release. That means you can also
    rollback to a previous release by simply reverting to a previous release in your SCM!
    Of course you don't have to let it happen automatically, you can set it up to build 'continually' and then remove the check on the SCM to see if any changes have been committed. You can replace this with the manual build button.

  • Hi, I would like to know if is it possible to install windows on mac pro , because I need to have some application like SQL server and visual studio, and they could not be install on mac

    hi, I would like to know if is it possible to install windows on macbook pro , because I need to have some application like SQL server and visual studio, and they could not be install on mac

    Windows on a Mac

  • Federated identity and Visual Studio Online - Restricting Access

    Hi,
    Using federated identity, can I restrict access to Visual Studio Online only from the corporate network, the same way I can with office 365? If so anyone know what claim rules should be used. Going further can I restrict by client certificate?
    Thanks

    Hi PMLIO,
    So the answer to your question is a mixture of both yes and no, depending on the level of restriction you desire.
    VSO has deep integration with Azure Active Directory, which allows you to restrict access to your Visual Studio Online account to only users who exist in your corporate directory.
    This page details more about this support and how to enable it. If you remove users from your Azure AD directory (which can be synced with your on-prem directory), they will lose access to your Visual Studio Online account automatically, without you
    having to manually remove them from the account. Will that fulfill your requirements?
    We currently don't support a scenario where only users who are connecting to Visual Studio Online from a corporate network are permitted to access your account. If that's something you need, we recommend an on premise deployment of Team Foundation Server.
    We'd certainly welcome a feature suggestion on the
    Visual Studio Uservoice to add support for this in Visual Studio Online!
    Client certificate authentication falls into the same bucket as above: Visual Studio Online doesn't support client certificate authentication. There's a
    UserVoice suggestion about supporting SSH auth that's in a similar vein, so it's definitely something we're hearing desire for.
    Let me know if you have any more questions!
    Regards,
    Will Barr
    Software Engineer | VSCS Developer Identity

  • Licencing of Windows 8.1, SQL Server and Visual Studio

    1. Windows 8 (OEM Version)
        a. Is it legal to re-install Windows 8 OEM version on a PC (this might
    be required because of formatting of PC hard disk)? Is there any upper limit on how many times a Windows 8 OEM version can be re-installed
    on a PC?
        b. Can I continue to use same Windows 8 OEM version even after upgrading
    a PC (for example change of processor, change of hard disk, change of RAM etc.)
    2. SQL Server (Developer and Express) Version:
       a. Your site mentions that SQL Server Developer edition can be used for
    software development and testing, but a software dealer whom I have approached says its not legal to use SQL Server Developer edition for
    development in a software consultancy. Please clarify.
       b. Is it legal to use SQL Server Express Edition for software development
    purpose in  a software consultancy?
    3. Visual Studio Express Edition
        a. Is it legal to use Visual Studio Express Edition for software development
    purpose in  a software consultancy?
    I had emailed this query to [email protected] yesterday but I have not received any reply.

    This question is a bit broad for a forum post. What have you tried and where does it fail? This code will give a list of files in an app folder. It might get you started: [c# code, but should be easy to translate to VB]
    public async Task<List<string>> GetFileListFromFolder() {
    List<string> fileList = new List<string>();
    StorageFolder storageFolder = await Package.Current.InstalledLocation.GetFolderAsync(@"myFolder\");
    foreach (StorageFile fl in await storageFolder.GetFilesAsync())
    fileList.Add(fl.Name);
    return fileList;
    I'm a self-taught noob amateur. Please take this into account when responding to my posts or when taking advice from me.

  • Crystal reports integration with sql server and visual studio 2010

    when I am trying to open a crystal report  through code ( visual basic 2010 ) I get the error
    the report has no tables
    I am using SQL SERVER 2008 R2
    HERE IS THE CODE I WROTE 
    Imports System.Data
    Imports System.Data.OleDb
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Windows.Forms
    Imports CrystalDecisions.Shared
    Public Class frmRep
        Dim objConnection As New OleDbConnection("Provider=SQLOLEDB;Data Source=ASHRAF-PC\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=TEST")
        Dim objDataAdapter As New OleDbDataAdapter()
        Dim objDataSet As New DataSet()
        Private Sub CrystalReportViewer1_Load(sender As System.Object, e As System.EventArgs) Handles CrystalReportViewer1.Load
        End Sub
        Private Sub frmRep_Load(sender As Object, e As System.EventArgs) Handles Me.Load
            Dim cr As New ReportDocument
            objDataAdapter.SelectCommand = New OleDbCommand()
            objDataAdapter.SelectCommand.Connection = objConnection
            objDataAdapter.SelectCommand.CommandType = CommandType.Text
            objDataAdapter.SelectCommand.CommandText = "select * from bands"
            objConnection.Open()
            objDataAdapter.Fill(objDataSet, "bands")
            objConnection.Close()
            cr.Load("D:\MY VB 2010 PROJECTS\test2\test2\CrystalReport1.rpt")
            cr.SetDataSource(objDataSet.Tables("bands"))
            CrystalReportViewer1.ReportSource = cr
            CrystalReportViewer1.Refresh()
        End Sub
    End Class

    I suggest you post that question in a Crystal Reports forum.
    Markus

  • Error message when trying to access Code in Visual Studio Online project.

    I have been using visual studio online for a while. Last week I connected azure console to my visual studio online account so that I could add an additional person to one of my projects.
    After that, I create a new Git based project. From the outset in the outset, I have been receiving a message in code explorer in the new project:
    The items requested either do not exist on the server at the specified versions, or you do not have permission to access them.Hide details
    TFS.WebApi.Exception: The items requested either do not exist on the server at the specified versions, or you do not have permission to access them. at b.a._getFailedRequestError (https://*******.visualstudio.com/_static/tfs/20150113T200222/_scripts/TFS/min/corejs?v=RGgj5lMwHLD78kGD2wBxR4uHtflIGwSdmCEhWbtUphc1:52:3204)
    at https://*******.visualstudio.com/_static/tfs/20150113T200222/_scripts/TFS/min/corejs?v=RGgj5lMwHLD78kGD2wBxR4uHtflIGwSdmCEhWbtUphc1:52:2285 at b.a._handleRequestFailure (https://*******.visualstudio.com/_static/tfs/20150113T200222/_scripts/TFS/min/corejs?v=RGgj5lMwHLD78kGD2wBxR4uHtflIGwSdmCEhWbtUphc1:52:2931)
    at Object.<anonymous> (https://*******.visualstudio.com/_static/tfs/20150113T200222/_scripts/TFS/min/corejs?v=RGgj5lMwHLD78kGD2wBxR4uHtflIGwSdmCEhWbtUphc1:52:2225) at l (https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js:2:16996) at Object.c.fireWith
    (https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js:2:17783) at T (https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js:2:81036) at XMLHttpRequest.r (https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js:2:86563)
    Accessing the project from Git tools connected fine and I was able to commit successfully, however, I don't know if the code is in the repo, because I cannot browse it on the website. Am still getting the message above.
    I can explore code for any of my other project without issue. All but one of my projects is using git.
    Any ideas?
    Thanks

    Hi Richie42,
    I'd like to know whether you can push the commits to remote git repository, and when this issue occurred. When work with Git team project in Visual Studio Online, you have to clone the Git repository to local, and work with it.
    You can also check if your have permissions to this team project in security page of team web access. Or
    run
    tfssecurity command in VS command line to have a check. Please execute tfssecurity /imx “MS account” /collection:url, for more information about tfssecurity /imx, please refer to:
    http://msdn.microsoft.com/en-us/library/ms400806.aspx
    Another option is clean team foundation cache, delete credentials in credential manager and delete browser cookies. Restart the Visual Studio to have a try. If the issue persists, please elaborate more details about your scenario with the reproduce steps.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Does Visual Studio Online support filtering Product Backlog/Sprint Views and Kanban by Area?

    There seems to be guidance out there now that suggests using one Master Team Project (with Areas and Iterations for partitioning) for everything rather than a Team Project per Application/Solution as the 'out of the box' product sort of steers you towards.
    If this guidance is valid, and I've heard that Microsoft use this approach internal, then is it possible to follow this guidance when using Visual Studio Online?
    I ask because it appears that in order to follow the 'Master Team Project' approach you need to be able to filter various elements of the TFS UI by Area and Iteration in order to allow a discrete view of just the material relating to one 'logical' application,
    team, etc.
    Whilst I see how on-premise TFS can do some of this, I can't see any obvious way to do this with Visual Studio Online - and I'm new to that particular product so accept I may have missed something.
    So my question is, can you follow the 'Master Team Project' approach if using Visual Studio Online and if so could someone steer me in the right direction please?
    Thanks

    Hi  RedDwarf62,
    Visual Studio Online(formerly Team Foundation Service) is a cloud-based service. When work with it, you can take it as TFS but no infrastructure to manage. You can follow the guide to work with Visual Studio Online.
    To have mulpitle Applications/Solutions in one team project or use a team project for each application depends on you and the relationship between solutions/projects. If the solutons/applications has refences each other, it would be better to include
    them in the same team project. 
    Working within a single Team Project also has its benefits. You can check this blog for more informaiton:
    http://nakedalm.com/working-within-a-single-team-project-with-team-foundation-server-2012/
    Best regards,  
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Visual Studio Online- Features and pricing.

    I am TFS Admin in my organization and we(approx 100 users) have Visual Studio Professional
    with MSDN subscription and i want to know about following things:
    1. Is Visual Studio Online free for me(as we have MSDN Professional license)?
    2. How much storage(on cloud) we can get with this subscription ,as we have thousands
    of applications to store?
    3. What are the features available for me with my current(Visual
    Studio Professional with MSDN) subscription.
    4. is there any other cost or pricing which i will have to pay in order to use Visual
    Studio Online?
    5. Authorization
    migration from existing project : If we migrating from an On-Premises Team Foundation Server to Team Foundation Service:
    1. IS source code history preserved
            2. Are we able to migrate WorkItems with history.
    6. SharePoint Integration with Team Foundation Service: Does
    hosted team foundation service support integrate with SharePoint.

    I have Visual Studio Professional with MSDN subscription and i want to know about following
    things:
    1. Is Visual Studio Online free for me?
    2. How much storage we get with this subscription?
    3. What are the features available for me with my current(Visual
    Studio Professional with MSDN) subscription.
    4. is there any other cost or pricing which i will have to pay in order to use Visual
    Studio Online?

  • Problem with "View project-level information" permission when accessing build definition in Visual Studio Online

    Hi, 
    from some time all our team members are experiancing problems when acsessing list of builds on Visual Studio Online or when trying to edit build definition in Visual Studio. Error message suggests problem with missing View project-level information permission:
    "TF50309: The following account does not have sufficient permissions to complete the operation: XXXXXXXX. The following permissions are needed to perform this operation: View project-level information."
    I've checked permissions of my User account and Group. "View project-level information" is set to Allow on both levels. We didn't make any changes in security configuration recently. Does anyone faced similar problem?
    Short term solution was to add all users, to Project Collection Administrators Group, but it is not what we would like to live with.

    It seems that the problem was fixed and Project Collection Administrators permissions are no longer required. Great :-)

  • Transfert Team Project from TFS 2010 to Visual Studio Online

    Hello,
    I think about migrating to Visual Studio Online to use the online TFS or to migrate from TFS 2010 to TFS 2013.
    My team is spread in 15 countries so, the visual studio online apear to be better.
    Could you tell me if it's possible to import a Team Project and its history to Visual Studio Online ?
    Thanks,
    Laurent

    well done....
    http://www.soran.edu.iq

  • Visual studio online - Excel power query usage and samples needed

    Background
    Visual Studio Online does not offer much in the way of reporting, when compared to (onsite) TFS... unless you utilize the REST API functionality.
    The Visual Studio Online REST API is fairly extensive, but not very 'reporting' friendly to applications like Microsoft Excel.
    Question
    Are there any good examples of Microsoft Excel Power Query usage - to acquire and create reports via the Visual Studio Online REST API?  I've searched - but surprisingly haven't found anything of substance.  It is fairly simple to call a VSO REST
    query using Excel Power Query, but not so simple to iterate through the lists within lists, etc... unless you are familiar with 'M language'.

    Hi,
    Thank you for reaching out to us. I am currently researching to gather more information with regards to your request. I shall revert back to you with an update at the earliest. Sincerely appreciate your patience.
    Regards,
    Nithin Rathnakar

  • How to install BIDS for SQL Server 2008 R2 and Visual Studio 2008(SSRS,SSIS)

    Hi,
    I want to install SQL Server 2008 R2 and Visual Studio to use SSRS tool, where to download these application. And my System Configuration is Window 8.1,64 Bit.
    Please share step by step information to download and installation. Kindly Reply soon. 
    Thank you
    Pravesh Kumar

    Hi Pravesh Kumar,
    As Visakh16 suggestted that you can download sql 2008 r2 standard and developer editon.
    If you have a subscription associated with your Microsoft account, you can download sql 2008 r2 standard and developer editon from below link, but these two editions are not for free:
    https://msdn.microsoft.com/subscriptions/securedownloads/
    Microsoft also provide the evaluation edition for free use of 180 days. This software is for evaluation and testing purposes. The evaluation is available in ISO format. Web, Standard, Enterprise and Datacenter editions are available via the same download:
    http://www.microsoft.com/en-us/download/details.aspx?id=11093
    More details information about the feature supported by different editions in the article below:
    Features Supported by the Editions of SQL Server 2008 R2
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Jenkins can not connect Visual Studio Online(not git repository)

    I have seen some techinical document and tried some scenario.
    1. Alternative Authentication on my profile
        Usename(primary) is my company email address.
        Username(secondary) is none.
    2. set jenkins setup for TFS plug-in
         Tema Foundation Server is https://xxxxxxxx.visualstudio.com
         Project path is $Benchmark/BuildProcessTempletes
         Login name is my compalny email address
         Password is NO1 specified.
    3. execute build at jenkins and some error outputed.
         TF30063: You are not authorized to access https://xxxxxxxx.visualstudio.com
         FATAL: Executable returned an unexpected result code 100
         ERROR: null
    off courese i can login the VSO with VS or browser.
    How can i authorize Visual Studio Online from Jenkins?
    

    this link give me a solution.
    Basically, tf.exe which is bundled at Visual studio can not use VSO. Use Team Explore Anywhere.

  • Can't connect to visual studio online source control from vs 2010 ice starting today 1-23-2015

    apparently there has been a breaking change and I can no longer connect to my visual studio online account anymore through vs 2010 ice - i get this message when i try to connect to it in the ide
    Microsoft Visual Studio
    Error
    Team Foundation Server https://xxxxx.visualstudio.com/defaultcollection does not exist or is not accessible at this time.
    Technical information (for administrator):
      TF30064: You are not authorized to access the server.
    OK   
    I can log in manually with a web browser but I need to check in items from the ide - it worked this morning but stopped working this afternoon
    when i try to debug the webpage that comes up in ide to connect it says line 4 char 16405 error object doesn't support this property or method - code
    0  url https://apps.vssps.visualstudio.com/_status/tfs/20150123T002517/_scripts/TFS/Laoder.min.js do you want to continue running scripts on this page?

    Hi diakoniaus,
    For the situation, you can check if you have the need permissions to access the team project in Visual Studio Online.
    To make sure the permission of your credential, we can run tfssecurity command in VS command line to have a check. Please execute
    tfssecurity /imx “MS account” /collection:url, for more information about tfssecurity /imx, please refer to:
    http://msdn.microsoft.com/en-us/library/ms400806.aspx 
    If you have the corresponding, you can also have a try on other machines to see if it works for you. Or you can clean team foundation cache, delete cookies in browser and delete the credentials that saved in credential manager. Then reconnect to the team
    project via VS 2010. You can check the troubleshooting details in this
    thread.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Make x64 default with "open with" menu

         Ive seen several threads to make x32 the default but not to many to make x64 the defualt. It appears that once the install is made I cannot only uninstall the 32 bit photoshop, only both at the same time. I have recently moved from cs4 to cs5. E

  • Page coming up blank in IE & Safari

    The website I am designing is driving me crazy. One of the pages is coming up blank in IE & Safari but works fine in FF. I assume it is something in the code but I can't figure it out.I am somewhat new to this type of stuff so any help would be appre

  • Block return sales orders or credit notes?

    Hi, Could someone please explain how I block return sales orders or credit notes? Also is there a way of searching which sales order documet types have been used for credit notes? Thanks

  • ODI Planning Attribute Dimension

    I have an existing Product dimension that was created via ODI 10.1.5.6 to Planning 11.1.1.3.03 -- the Product Dim loads fine. Then I attached an attribute dimension called "Product Line" to it using custom attributes. I added four attributes to attac

  • Mac can't read GPT ?

    Hi, I'm fixing my fiends USB drive. AFIK it was inserted into Windows, and partition were corrupted. I did manage to fix GUID headers with gpt_surgeon.pym but then mac did got messy, and sth happend, Now Disk Utility Tool show's only 2 partitions out