What files from Visual Studio 2017 Project/Solution should be in a SVN ignore?Should I add the Visual Studio 2015 .vs folder to source control?What are the various “Build action” settings in Visual Studio project properties and what do they do?How to rename a Project Folder from within Visual Studio?How to stop Visual Studio from automatically creating solution filesEasy way to add multiple existing .csproj to a Visual Studio Solution?How do I find files that are missing from visual studio projects?Visual Studio 2015 or 2017 does not discover unit testsUnit Tests not discovered in Visual Studio 2017Referencing projects from other solutions in Visual Studio 2017VisualHG in VS 2017: commit all projects in a solutionVisual Studio 2017 solution hangs on startup the first time

Is there an evolutionary advantage to having two heads?

Ticket sales for Queen at the Live Aid

Crossing US border with music files I'm legally allowed to possess

Compact Mechanical Energy Source

Do you play the upbeat when beginning to play a series of notes, and then after?

Where did the “Vikings wear helmets with horn” stereotype come from and why?

SQL Server (JOIN) all from first with NULLs from 2nd

Comment dit-on « I’ll tell you what » ?

Uses of T extends U?

How many chess players are over 2500 Elo?

Why does the 6502 have the BIT instruction?

What is the 中 in ダウンロード中?

Where do I put diamond mines on my map?

I think I may have violated academic integrity last year - what should I do?

Is it ok to put a subplot to a story that is never meant to contribute to the development of the main plot?

A Mathematical Discussion: Fill in the Blank

Modern approach to radio buttons

Plot exactly N bounce of a ball

Is my router's IP address really public?

Is it possible to change original filename of an exe?

I unknowingly submitted plagiarised work

Crossword gone overboard

How is character development a major role in the plot of a story

Smart people send dumb people to a new planet on a space craft that crashes into a body of water



What files from Visual Studio 2017 Project/Solution should be in a SVN ignore?


Should I add the Visual Studio 2015 .vs folder to source control?What are the various “Build action” settings in Visual Studio project properties and what do they do?How to rename a Project Folder from within Visual Studio?How to stop Visual Studio from automatically creating solution filesEasy way to add multiple existing .csproj to a Visual Studio Solution?How do I find files that are missing from visual studio projects?Visual Studio 2015 or 2017 does not discover unit testsUnit Tests not discovered in Visual Studio 2017Referencing projects from other solutions in Visual Studio 2017VisualHG in VS 2017: commit all projects in a solutionVisual Studio 2017 solution hangs on startup the first time






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I'm working on a solution (C#) with 3 projects in it (one library and two applications) and I wonder what is the bare minimum of files you need to commit to be able to pull off a fresh solution and get it to work right away?



Obviously all source files, *.sln, *.csproj are needed and not the obj folder or bin folder (unless I want to keep a working copy of the compiled files).
But do I need to commit the:



Properties folder
.vs folder
*.resx
*.config


I have Googled it but all I found was a list of the file types, but no explanation of what files where critical to make the solution/project load and compile.



[EDIT]

It has been suggested that this is the same question as: Should I add the Visual Studio 2015 .vs folder to source control?
The question is not related to only the .vs folder, but to all project/solution files.










share|improve this question
























  • Possible duplicate of Should I add the Visual Studio 2015 .vs folder to source control?

    – Jerome Baek
    Mar 24 at 8:41

















1















I'm working on a solution (C#) with 3 projects in it (one library and two applications) and I wonder what is the bare minimum of files you need to commit to be able to pull off a fresh solution and get it to work right away?



Obviously all source files, *.sln, *.csproj are needed and not the obj folder or bin folder (unless I want to keep a working copy of the compiled files).
But do I need to commit the:



Properties folder
.vs folder
*.resx
*.config


I have Googled it but all I found was a list of the file types, but no explanation of what files where critical to make the solution/project load and compile.



[EDIT]

It has been suggested that this is the same question as: Should I add the Visual Studio 2015 .vs folder to source control?
The question is not related to only the .vs folder, but to all project/solution files.










share|improve this question
























  • Possible duplicate of Should I add the Visual Studio 2015 .vs folder to source control?

    – Jerome Baek
    Mar 24 at 8:41













1












1








1








I'm working on a solution (C#) with 3 projects in it (one library and two applications) and I wonder what is the bare minimum of files you need to commit to be able to pull off a fresh solution and get it to work right away?



Obviously all source files, *.sln, *.csproj are needed and not the obj folder or bin folder (unless I want to keep a working copy of the compiled files).
But do I need to commit the:



Properties folder
.vs folder
*.resx
*.config


I have Googled it but all I found was a list of the file types, but no explanation of what files where critical to make the solution/project load and compile.



[EDIT]

It has been suggested that this is the same question as: Should I add the Visual Studio 2015 .vs folder to source control?
The question is not related to only the .vs folder, but to all project/solution files.










share|improve this question
















I'm working on a solution (C#) with 3 projects in it (one library and two applications) and I wonder what is the bare minimum of files you need to commit to be able to pull off a fresh solution and get it to work right away?



Obviously all source files, *.sln, *.csproj are needed and not the obj folder or bin folder (unless I want to keep a working copy of the compiled files).
But do I need to commit the:



Properties folder
.vs folder
*.resx
*.config


I have Googled it but all I found was a list of the file types, but no explanation of what files where critical to make the solution/project load and compile.



[EDIT]

It has been suggested that this is the same question as: Should I add the Visual Studio 2015 .vs folder to source control?
The question is not related to only the .vs folder, but to all project/solution files.







visual-studio-2017 projects-and-solutions svncommit






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 25 at 12:48







Max Kielland

















asked Mar 23 at 9:59









Max KiellandMax Kielland

3,47674180




3,47674180












  • Possible duplicate of Should I add the Visual Studio 2015 .vs folder to source control?

    – Jerome Baek
    Mar 24 at 8:41

















  • Possible duplicate of Should I add the Visual Studio 2015 .vs folder to source control?

    – Jerome Baek
    Mar 24 at 8:41
















Possible duplicate of Should I add the Visual Studio 2015 .vs folder to source control?

– Jerome Baek
Mar 24 at 8:41





Possible duplicate of Should I add the Visual Studio 2015 .vs folder to source control?

– Jerome Baek
Mar 24 at 8:41












1 Answer
1






active

oldest

votes


















0














Though SVN and Git are different Version Control System, I think the files that should be excluded in the Version Control System should be similar. This file is a ignore file for Git (an .gitignore), but should be work as it should in SVN Version Control Systems.



https://github.com/github/gitignore/blob/master/VisualStudio.gitignore



This file is often used in various places like Github Destktop, or the Github Site itself.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55312564%2fwhat-files-from-visual-studio-2017-project-solution-should-be-in-a-svn-ignore%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Though SVN and Git are different Version Control System, I think the files that should be excluded in the Version Control System should be similar. This file is a ignore file for Git (an .gitignore), but should be work as it should in SVN Version Control Systems.



    https://github.com/github/gitignore/blob/master/VisualStudio.gitignore



    This file is often used in various places like Github Destktop, or the Github Site itself.






    share|improve this answer



























      0














      Though SVN and Git are different Version Control System, I think the files that should be excluded in the Version Control System should be similar. This file is a ignore file for Git (an .gitignore), but should be work as it should in SVN Version Control Systems.



      https://github.com/github/gitignore/blob/master/VisualStudio.gitignore



      This file is often used in various places like Github Destktop, or the Github Site itself.






      share|improve this answer

























        0












        0








        0







        Though SVN and Git are different Version Control System, I think the files that should be excluded in the Version Control System should be similar. This file is a ignore file for Git (an .gitignore), but should be work as it should in SVN Version Control Systems.



        https://github.com/github/gitignore/blob/master/VisualStudio.gitignore



        This file is often used in various places like Github Destktop, or the Github Site itself.






        share|improve this answer













        Though SVN and Git are different Version Control System, I think the files that should be excluded in the Version Control System should be similar. This file is a ignore file for Git (an .gitignore), but should be work as it should in SVN Version Control Systems.



        https://github.com/github/gitignore/blob/master/VisualStudio.gitignore



        This file is often used in various places like Github Destktop, or the Github Site itself.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 24 at 9:14









        Sang Wan JeonSang Wan Jeon

        6416




        6416





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55312564%2fwhat-files-from-visual-studio-2017-project-solution-should-be-in-a-svn-ignore%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

            밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

            1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴