This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Handle Database operations | |
/// </summary> | |
/// <remarks>The default network packet size is 4,096 bytes. More information at http://technet.microsoft.com/en-us/library/ms177437.aspx </remarks> | |
public class BatchCommands | |
{ | |
private StringBuilder _query = new StringBuilder(); | |
private int _bufferLength = 0; | |
public static string ConnectionString | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
*********************************************************************************************** | |
Embed in csproj with import and the build events are hooked up automatically | |
<Import Project="..\..\..\Common.targets" Condition="Exists('..\..\..\Common.targets')" /> | |
PreBuild - Handling revision on build so the source control revision number of the project folder is embeded in the last numeric of the projects AssemblyInfoVersion and AssemblyInfoFileVersion | |
PostBuild - Sets revision to 0 and reverts the file with a copy upon finishing for not introducing change on version control for the assemblyInfo.cs | |
In debug mode the revision detection is disabled, and notification is shown instead. | |
OlderNewer