Wednesday, December 3, 2008

Compiling C# and VB code together in asp.net

Yesterday i was working on a web application which uses vb classes. I have added a c# class added but asp.net compiler does not compile it as app_code folder becomes a single assembly so it allows only vb or C#.

Tip:
To compile both C# and VB, add this in web.config.

<compilation debug="false">
<codesubdirectories>
<add directoryname="VBCode">
<add directoryname="CSCode">
</add>
</add></codesubdirectories></compilation>


For more information, see this post.

Monday, December 1, 2008

The Eight Commandments of Source Code Control

Yesterday I read source code control tips which are helpful for developers working in a team environment. Link was sent by my friend Awais. I am posting here to share this.

1. You shall check in early and check in often. You anger your coworkers when you check out a file and insist on keeping it checked out until some future point in time that is measured using variables that exist solely in your brain.

2. You shall never check in code that breaks the build. If you code does not compile, it does not belong in the source control repository.

3. You shall not go home for the day with files checked out, nor shall you depart for the weekend or for a vacation, with files checked out.

4. You shall leave a descriptive comment when checking in your code. You need not include your name or the date in the comment as that information is already tracked.

5. You shall use the 'Undo Checkout' option if you check out a file and do not make any changes. It displeases your coworkers when you check in code that has not changed at all from the original.

6. You shall not use comments to 'save' defunct code. Fear not, for the code you delete still exists in the source control code history and can be retrieved if needed.

7. You shall use source control for more than archiving just code. The source code control repository makes an excellent storage for technical docs, SQL scripts, and other documents and files related to the project.

8. You shall religiously backup your source code control database on a regular basis and store a copy in an off-site location.

Source: http://scottonwriting.net/sowblog/posts/13581.aspx