This is a basic set of instructions on how to add version number support for SQL Server projects and databases. This will will add the version number as an extended property on the deployed database.
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
| #!/bin/bash | |
| # iterate over the svg files fed into on the command line | |
| for svgfile in "$@" | |
| do | |
| name=${f%.*} | |
| ext=${f##*.} | |
| echo "Processing $name ..." | |
| set -e |
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
| import java.awt.Color; | |
| import java.awt.Component; | |
| import java.awt.Graphics; | |
| import java.awt.Rectangle; | |
| import java.awt.event.ActionEvent; | |
| import java.awt.event.ActionListener; | |
| import java.util.Collections; | |
| import java.util.Enumeration; | |
| import java.util.List; |
To remove a submodule you need to:
- Delete the relevant section from the .gitmodules file.
- Stage the .gitmodules changes git add .gitmodules
- Delete the relevant section from .git/config.
- Run git rm --cached path_to_submodule (no trailing slash).
- Run rm -rf .git/modules/path_to_submodule (no trailing slash).
- Commit git commit -m "Removed submodule "
- Delete the now untracked submodule files rm -rf path_to_submodule
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
| namespace YourNamespace | |
| { | |
| /// <summary> | |
| /// Uses the Name value of the <see cref="ColumnAttribute"/> specified to determine | |
| /// the association between the name of the column in the query results and the member to | |
| /// which it will be extracted. If no column mapping is present all members are mapped as | |
| /// usual. | |
| /// </summary> | |
| /// <typeparam name="T">The type of the object that this association between the mapper applies to.</typeparam> | |
| public class ColumnAttributeTypeMapper<T> : FallbackTypeMapper |
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
| /* | |
| =================================================== | |
| Generate MERGE Statements for All Tables | |
| =================================================== | |
| Copyright: Eitan Blumin (C) 2012 | |
| Email: [email protected] | |
| Source: www.madeiradata.com | |
| Disclaimer: | |
| The author is not responsible for any damage this |
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
| using System; | |
| using System.Runtime.InteropServices; | |
| using Microsoft.Win32; | |
| public enum WallpaperStyle | |
| { | |
| Fill, | |
| Fit, | |
| Stretch, | |
| Tile, |