It was easy. Visited http://www.asp.net, clicked on Getting Started and saw the video Create an app with ASP.NET Web Forms. Did as told in video and voila! my first app was up and running.
Since I started doing development and there were revisions, I felt the need for a local version control. Heard SVN is good and also setting up is a cake walk. Well, I had my doubts. Setting up a version control server can't be a cake walk!! I was proved wrong. Setting up SVN: 1. Downloaded SVN from tigris site here and install Note: Before creating a repository refer the Subversion documentation that comes along with the SVN to know more details about planning your repository organization etc. It has a good write up. 2. I decided to create one repository for each of my software projects. So here it goes... Issue the following command to create a repository: > svnadmin create "d:\svn_rep\myproj" > dir d:\svn_rep\myproj conf db format hooks locks README.txt This creates a new directory "d:\svn_rep\myproj" which contains the SVN repository. 4. Now setup your project files in a directory as below: d:\tmp\helloworld\branches\ d:\tmp\helloworld...
Comments
Post a Comment