How to create/add my new solution/project to Source Control at VS Online?

Hi, I'm using VS2012.  I'm logged into VS online and can open the Team Explorer in VS2012. The frustrating thing is how do I add a new solution to source control?  I click on the Solution Explorer, Right click on the solution, Select "Add
solution to Source Control".  The a pop up dialog shows up with 3 of my Solution/projects that are there.  
The problem is i don't want to put this new solution under any of the 3 solutions currently in Source Control in VS Online.  I want this to be a new solution/project to be saved in the source control form the root.  If I click on the Advanced button,
edit the "Source Control Folder" path to "$/MyNewSolutionName", I then get an error message saying root folder is reserved only for team project.  How can I get a new solution/project to the source control?  I've done it before
but it seemed to have changed.
Okay, In Source Control Explorer, I select the root, xxxx.visualstudio.com\DefaultCollection.  I then select VS "File" menu and in the drop down I selected "New" and then "Team Project".  It takes me to a browser and
lands at VS online.  I then type in the new team project name.  Everything is good so far.  I now returns to my VS on my local PC, I right click either the solution or the project in that solution, select "Add solution to Source Control".
 The "Add Solution... " dialog then pops up.  I selected newly created Team Project, leave everything else in default and select OK and now I get a different error message saying "Fail to create mapping, cannot map server path, $/TeamProject/projectname,
becuase it is not rooted beneath a team project. 
How can I fix this and just get my source into the source  control?  Thank you.
Thank you.
Thank you

Assuming you map to yoursite.visualsualstudio.com/defaultcollection you will need to create a team project to upload your stuff. If you are trying to save to $/ that is team project collection level and you can only add team projects at that point.
you can add a new team project with the below picture
Then depending on how you have set up your workspace, and assuming locally that you are in the local workspace you can upload your project.

Similar Messages

  • How can i add a new count to this source code ?

    [4shared.com - document sharing - download db.txt|http://www.4shared.com/file/210566155/c080d93a/db_online.html] Hi everyone
    I have 5 variables
    1. XTSM is between 0~200
    2. XTS is between 0~2
    3. XRX is 0~3
    4. XHAN is 0~7
    5. ZHTYPE is one of these : (1)TCHF_HLF (2)TCHSD (3)TCHFULL
    they are related to their with this shape .
    XTSM->XTS->XRX->XHAN->ZHTYPE (Just Logical)
    Please tell me how can i see this output?
    ----Type------------------Total---------------------Total of ZHTYPE-----------------
        XTSM:0/XTS:0               in this case is : 29     TCHF_HLF:28 TCHSD:1 TCHFULL:0
        XTSM:0/XTS:1               No. of found  
        XTSM:0/XTS:2               No. of found  
        XTSM:1/XTS:0               No. of found  
        XTSM:1/XTS:1               No. of found  
        XTSM:1/XTS:2               No. of foundI get XTSM/XTS/TRX/XHAN and now i want count total of this
    ZHTYPE is one of these : (1)TCHF_HLF (2)TCHSD (3)TCHFULL
    they are related to their with this shape .
    * Each XTSM has 3 XTS (0-2)
    * Each XTS has 4 XRX (0-3)
    * Each XRX has 8 XCHAN (0-7)
    * and Each line has a type of ZHTYPE
    This is sample file: 4shared.com - document sharing - download db.txt
    This output with this code is true but I want add ZHTYPE at the end of each line + XTSM/XTS please help me ???(for example this : XTSM:0/XTS:0 : 29 TCHF_HLF:28 TCHSD:1 TCHFULL:0)
    public class Test {
        public static void main(String[] args) throws IOException {
            Test test = new Test();
            test.execute();
        private static String TYPE_XTSM = "XTSM";
        private static String TYPE_XTS = "XTS";
        private static String TYPE_XRX = "XRX";
        private static String TYPE_XHAN = "XHAN";
        private void execute() throws IOException {
            InputStream in = null;
            BufferedReader br = null;
            TreeMap<Integer, TreeMap<Integer, Integer>> xtsmMap = new TreeMap<Integer, TreeMap<Integer, Integer>>();
            try {
                in = Test.class.getResourceAsStream("db.txt");
                br = new BufferedReader(new InputStreamReader(in));
                String line;
                while ((line = br.readLine()) != null) {
                    Record rec = new Record(line);
                    processRecord(xtsmMap, rec);
            } finally {
                if (br != null) {
                    br.close();
            printResults(xtsmMap);
        private void processRecord(
                TreeMap<Integer, TreeMap<Integer, Integer>> xtsmMap, Record rec) {
            TreeMap<Integer, Integer> xtsMap;
            if (xtsmMap.containsKey(rec.getXtsm())) {
                xtsMap = xtsmMap.get(rec.getXtsm());
            } else {
                xtsMap = new TreeMap<Integer, Integer>();
                xtsmMap.put(Integer.valueOf(rec.getXtsm()), xtsMap);
            if (xtsMap.containsKey(rec.getXts())) {
                Integer count = xtsMap.get(rec.getXts());
                xtsMap.put(Integer.valueOf(rec.getXts()), Integer.valueOf(count
                        .intValue() + 1));
            } else {
                xtsMap.put(Integer.valueOf(rec.getXts()), Integer.valueOf(1));
        private void printResults(
                TreeMap<Integer, TreeMap<Integer, Integer>> xtsmMap) {
            System.out.println("Type\t\tTotal");
            Set<Integer> xtsmSet = xtsmMap.navigableKeySet();
            for (Integer xtsm : xtsmSet) {
                TreeMap<Integer, Integer> xtsMap = xtsmMap.get(xtsm);
                Set<Integer> xtsSet = xtsMap.navigableKeySet();
                for (Integer xts : xtsSet) {
                    Integer count = xtsMap.get(xts);
                    String outputLine = TYPE_XTSM + ":" + xtsm + "/" + TYPE_XTS
                            + ":" + xts + "\t" + count;
                    System.out.println(outputLine);
        private static class Record {
            private Integer xtsm, xts, xrk, xhan;
            Record(String line) {
                StringTokenizer st = new StringTokenizer(line, "/");
                while (st.hasMoreTokens()) {
                    String token = st.nextToken();
                    String type = token.substring(0, token.indexOf(":"));
                    String valueStr = token.substring(token.indexOf(":") + 1, token
                            .length());
                    Integer value = Integer.valueOf(valueStr);
                    if (TYPE_XTSM.equals(type)) {
                        xtsm = value;
                    } else if (TYPE_XTS.equals(type)) {
                        xts = value;
                    } else if (TYPE_XRX.equals(type)) {
                        xrk = value;
                    } else if (TYPE_XHAN.equals(type)) {
                        xhan = value;
            public Integer getXtsm() {
                return xtsm;
            public Integer getXts() {
                return xts;
            public Integer getXrk() {
                return xrk;
            public Integer getXhan() {
                return xhan;
    }I want add ZHTYPE to this ...
    Code:
    Type        Total
    XTSM:0/XTS:0    29        such as this : TCHF_HLF:28 TCHSD:1 TCHFULL:0
    XTSM:0/XTS:1    29
    XTSM:0/XTS:2    29
    XTSM:1/XTS:0    29
    XTSM:1/XTS:1    29
    XTSM:1/XTS:2    29
    XTSM:2/XTS:0    29
    XTSM:2/XTS:1    29
    XTSM:2/XTS:2    29
    XTSM:3/XTS:0    14
    XTSM:3/XTS:1    14
    XTSM:3/XTS:2    14
    XTSM:4/XTS:0    13Thanks a lot.

    http://www.4shared.com/file/210566155/c080d93a/db_online.html

  • How to add a new column (Project Number) in the action items table under NPD Module?

    There are two projects with same name and created by same person in NPD.
    So when it is displayed in "Action Items" table, It looks similar.
    To avoid this, I need one more column (Project Number) to be added in the "Action Items" table and " Strategic briefs and projects" table.
    So, How to add a new column (Project Number) in the "Action Items" table and " Strategic briefs and projects" table under NPD Module?
    Please do the needful.

    There is no out of the box configuration available to add columns to NPD action items.   As always we welcome enhancement requests. 
    Thanks
    Kelly

  • ICal Lion is infuriating. How can I add a new event in a chosen calendar without having to create it in my default then edit it?

    iCal Lion is infuriating. How can I add a new event in a chosen calendar without having to create it in my default then edit it?

    We are all entitled to our own opinions. So I respect you there brother
    But then again, Apple has its own basis. iOS is what's selling like pancakes not Macs, so if the gazillions out there are using iOS device and have gotten used to the calendar in their iOS devices. Wouldn't you think it made sense if Lion has the same calendar look and feel?
    Everything was considered and weighthed when they developed Lion. They even mentioned it in the press, They were blown away with the success of iOS so they are extending it to OSX.
    Quite frankly, I like the old iCal but yeah I don't expect anything in SL to stay in Lion otherwise it'll be another Cat name related to Leopard
    People should start looking at this perspective and not get STUCK in the old OS.

  • How can i add a new language to iOS?? do i have to create a language pack to do it??

    how can i add a new language to iOS?? do i have to create a language pack to do it?? PLEASE help...

    yes a new language.. do i have to create a language pack?? or any other way.. i need to make my device display in "sinhala" langauge which is used in my country (Sri Lanka) and not yet available in iOS.. is this possible?? seeking help very badly...
    PLEASE help...

  • How can I add a new column in compress partition table.

    I have a compress partition table when I add a new column in that table it give me an error "ORA-22856: CANNOT ADD COLUMNS TO OBJECT TABLES". I had cretaed a table in this clause. How can I add a new column in compress partition table.
    CREATE TABLE Employee
    Empno Number,
    Tr_Date Date
    COMPRESS PARTITION BY RANGE (Tr_Date)
    PARTITION FIRST Values LESS THAN (To_Date('01-JUL-2006','DD-MON-YYYY')),
    PARTITION JUNK Values LESS THAN (MAXVALUE));
    Note :
    When I create table with this clause it will allow me to add a column.
    CREATE TABLE Employee
    Empno Number,
    Tr_Date Date
    PARTITION BY RANGE (Tr_Date)
    PARTITION FIRST Values LESS THAN (To_Date('01-JUL-2006','DD-MON-YYYY')),
    PARTITION JUNK Values LESS THAN (MAXVALUE));
    But for this I have to drop and recreate the table and I dont want this becaue my table is in online state i cannot take a risk. Please give me best solution.

    Hi Fahed,
    I guess, you are using Oracle 9i Database Release 9.2.0.2 and the Table which you need to alter is in OLTP environment where data is usually inserted using regular inserts. As a result, these tables generally do not get much benefit from using table compression. Table compression works best on read-only tables that are loaded once but read many times. Tables used in data warehousing applications, for example, are great candidates for table compression.
    Reference : http://www.oracle.com/technology/oramag/oracle/04-mar/o24tech_data.html
    Topic : When to Use Table Compression
    Bug
    Reference : http://dba.ipbhost.com/lofiversion/index.php/t147.html
    BUG:<2421054>
    Affects: RDBMS (9-A0)
    NB: FIXED
    Abstract: ENH: Allow ALTER TABLE to ADD/DROP columns for tables using COMPRESS feature
    Details:
    This is an enhancement to allow "ALTER TABLE" to ADD/DROP
    columns for tables using the COMPRESS feature.
    In 9i errors are reported for ADD/DROP but the text may
    be misleading:
    eg:
    ADD column fails with "ORA-22856: cannot add columns to object tables"
    DROP column fails with "ORA-12996: cannot drop system-generated virtual column"
    Note that a table which was previously marked as compress which has
    now been altered to NOCOMPRESS also signals such errors as the
    underlying table could still contain COMPRESS format datablocks.
    As of 10i ADD/SET UNUSED is allowed provided the ADD has no default value.
    Best Regards,
    Muhammad Waseem Haroon
    [email protected]

  • How to create a copy of a project

    We are using RoboHelp HTML version X5, and we use version
    control. We are trying to figure out how to create a copy of a
    project so we can edit the new version with the old version
    remaining intact. That way we could have multiple versions of our
    help system, a distinct version for each software release we have.
    Thanks.

    The way I do it is rather simple.
    1.       Copy the local RoboHelp project to a new location.
    2.       Remove the link to source control. (See http://www.robowizard.com/RoboWizard/MonthlyScry/102004.htm on how to do this without opening RoboHelp. Please follow these instructions.)
    3.       Open the RoboHelp project and add it to source control as a new project.
    By creating a copy of the entire project directory, ALL the content is retained.
    Greet,
    Willam

  • How do I add a new worksheet to an excell file utilizing a template with the report generation toolkit?

    Hello,
    My vi is gathering data from a piece of machinery. At varrious points durring the process, my vi must create printable reports. I am using the report generation tool kit to do this. What I want to do is for every report generated durring the run, add it as a new worksheet in an Excell workbook. My excell template works fine for the initial master report and I can add new data to new worksheets. What I am having a problem figuring out is how do I add the new data to a new worksheet using an excel template? I have 5 different reports that need to be generated at different times with some more often than others. I would like all these reports to be in the
    same master excel file. Thanks in advance
    -Greg
    Gregory Osenbach, CLA
    Fluke

    Hi Greg,
    There is no built-in support in LabVIEW to add a new worksheet to an existing Excel report simply because this functionality does not exist in the Excel application itself.
    My suggestion would be to open up the template you wish to use for the new worksheet. Copy the cells from the template and paste them into your new worksheet that you've created. Then close the original template and you have another copy of the template in which you can populate with data values.
    I have attached an example program of how to Copy and Paste a Cell in Microsoft 97 Using ActiveX in LabVIEW to this post. Hope this helps!
    Kileen C.
    Applications Engineer
    National Instruments
    Attachments:
    XL_cell_copy_and_paste.llb ‏76 KB

  • How do you add a new scene to beginning without disturbing movie with music and beat markers?

    How do you add a new portion to the beginning of your project without disturbing the rest of the project that already has perfectly place clips attached to beat markers with the music ?
    I forgot to add a tittle intro before the music starts with the attached pictures. When I try to add the whole project goes out of sync.
    I want to just add an intro without disturbing the entire project.
    Thanks

    Well, if you re-attach your background music under the first clip, the starting point will be at the start of that clip so I think it will still be in sync.  If not it's simply a matter of nudging the music track a bit along the timeline.  Comparing the audio waveforms of the two tracks should help with this.  When its right you can delete the track in the background music position.  Now you can add what you like before the first clip without affecting sync.
    Geoff.

  • How do I add a new Ipod to an existing account?

    I created a new Itunes account and then I got a new Ipod and I plugged my Ipod into my computer, but nothing came up on Itunes? How do I add my new Ipod to my Itunes account?

    iDevices are not added to accounts.
    Are you trying to say the iDevice is not being detected by iTunes?

  • HT204053 how do I add a new mac email address

    How do I add a new me.com email address?  With mobileme it seemed like you could add up to 5 email addresses but not quite sure how it works now with icloud.

    With iCloud, you only get one address per iCloud account.  You can create up to 3 alias adress names, but these still receive email to the same inbox (see http://support.apple.com/kb/PH2622).  If you already have a @me address, you should have been assigned a @icloud address too.  This operates like an alias address, but does not count toward your total of 3.
    Also, new iCloud accounts only receive @icloud addresses; @me (and @mac) addresses are no longer available.

  • How can i add a new characteristic to Sap standard InfoObject?

    Hi Experts,
    Please anyone let me know how can I add a new characteristic or a key figure into an SAP standard InfoObject in order to add it to the standard InfoCube? The situation is I would like to add region and business unit to the characteristics of the Industrial Hygiene and Safety. After that, I would like to add them to the InfoCube called Accidents: Person Involved [0EIH_C02] that is located in the MultiProvider called Accidents: Complete View [0EIH_MC01]. Is it feasible to do this way?
    I just learned the BW/BI, so please help me with this. I would really appreciate your responses.
    Thanks,
    -Napadol

    Hi Napadol,
    To add a attribute in a char:
    1) Go to info object/char in change mode and add the additional attribute you want and select navigational attribute in attribute tab if you want. (Create these additional attribute first in info object catalouge)
    2) Activate the Object/Char
    3) open info cube in change mode and pick the characteristic from left panel to info cube dimension.
    4) Activate infocube.
    5) Go to multi provider add the char in one of the dimension and do identification for this char and activate.
    Regards,
    Kams

  • How can I add a new message(custom text message) to the holiday approval em

    How can I add a new message(custom text message) to the holiday approval email-notification sent to the manager?
    TIA

    The answer is 'not very easily', unless the information you want to display is the employee's leave balances. In 12.1.3 Oracle have delivered functionality that allows you to include the leave balances in the approval notifications out-the-box, ie, without customization.
    For any other information you're probably going to have to customize the standard delivered HRSSA workflow. Within this workflow, the Leave of Absence functionality uses the Notify Approver (Embedded) (HR_APPROVER_NTF) notification. The body of this notification is set to the Notify Approver (Embedded) (HR_NTF_EMBEDDED_REGION) attribute. This in turn defaults to:
    JSP:/OA_HTML/OA.jsp?OAFunc=-&HR_EMBEDDED_REGION-&NtfId=-&#NID-
    So essentially you can change the HR_APPROVER_NTF notification. The problem with changing this notification is that it's generic - it's used for all SSHR functions and not just Leave of Absence. That means you have to make other, more substantial, customizations to the workflow to ensure the changes you make only applies to LOA.
    The other option is to personalize the review page (ie, the region referenced in &HR_EMBEDDED_REGION) to include whatever messages you want. But that means they'll appear on the Review page and all LOA approval notifications and that might not be what you want.
    It's usually better to live with what Oracle deliver and find an alternative solution! What's the content of the message you want to include?

  • ICS 2.x: How do I add a new timezone?

    How do I add a new timezone in iPlanet Calendar Server (iCS) 2.x?
    <P>
    Use the following steps to add a new timezone:<BR>
    <P>
    <OL>
    <LI>Create a new <B>timezone definition</B>. <B>Timezone definitions</B> are
    are specified as iCalendar objects, as defined in RFC 2445. The definition for
    the "Australia/Perth" timezone would appear as follows:<BR><P>
    BEGIN:VTIMEZONE
    TZID:Australia/Perth
    BEGIN:STANDARD
    DTSTART:19970101T000000
    TZOFFSETFROM:+0800
    TZOFFSETTO:+0800
    TZNAME:WST
    TZNAME:CTT
    END:STANDARD
    END:VTIMEZONE
    <P>
    <LI>Add the timezone definition to the file<BR>
    <P>
    loadpoint
    /CalendarServer/cal/bin/data/timezones_libnls.ics
    <P>
    <LI>Restart iCS.
    <P>
    <LI>Add the following line to the file
    loadpoint/CalendarServer/cal/uicust/en/tz_i18n.js:<BR>
    <P>
    tzList[tzList.length] = t('', 'Australia/Perth');
    <P>
    <LI>Add the following line to the file
    loadpoint/CalendarServer/cal/uicust/en/tz_fs.html:<BR>
    <P>
    tzList[tzList.length] = t('', 'Australia/Perth');
    </OL>

    You need to log into your emali on your computer and create the new folder from there.

  • How to create add-on for VB application

    Hi friends,
    I had created a VB application(not vb.net) and now i want to make that application as Add-On and Register in B1.
    for that what are the things i have to install,and how to create add-on to my VB application.
    Thanks & Regards
    Srinivas

    Srinivas,
    The SAP Business One SDK Help Center documents how to package your solution.  I would recommend that you start with reading the documentation here under the subject of "Package and Deployment".  You can also download the Business One Development tools (B1TE) from this site which will assist you with packaging your add-on.
    HTH,
    Eddy

Maybe you are looking for

  • USB to Firewire 400

    I have a harddrive that is just USB 2.0. I need to get footage onto the drive from a Mac that has Firewire 400 ports. Is there a cheap cord I can buy to do this. Any links to this would be appreciated. Thank You, Evan Jacobs www.anhedeniafilms.com

  • Restrictive and non-restrictive procedures!

    Hi all, Wanted to knwo what are restrictive and non-restrictive procedures in oracle forms. Thanks and Regards

  • How to transfer/ copy data and setting from one iPhone to another

    Hi, I recently cracked the screen on my 3G iPhone and a have fortunately managed to convince the insurance company to pay for a new one. I'd like to be able to transfer all my contacts, apps aand setting to the new phone. Only problem is I have to gi

  • How can we implement SSO in SP2013

    Hi, How can we implement SSO from other applications to SP2013 web app. Please suggest with an example. Thanks, Krishna Krishnasandeep

  • In restrictions on my iPad there is no 17 in apps

    Okay so, I used to able to download 17+ games seeing that I am over 17 and so is my account (1990). I'm unable to download 17+ games anymore, no I don't have low gb, no I didn't set my date on my account lower then 1997. I have tried soft resetting,