This file contains 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
# {project name} - README | |
{project name} is a console application containing tests for {description}. | |
The tests are written using the [PetaTest][] unit testing framework. | |
Simply compile and start the resulting executable to run the tests. | |
See the *"Selecting tests to run"* section, for details on how to specify which tests will run. | |
## Configuration |
This file contains 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
<?xml version="1.0" encoding="utf-8" ?> | |
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<!-- | |
See https://github.com/nlog/nlog/wiki/Configuration-file | |
for information on customizing logging rules and outputs. | |
--> | |
<targets> | |
<!-- add your targets here --> |
This file contains 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
<?xml version="1.0" encoding="utf-8" ?> | |
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<!-- | |
See https://github.com/nlog/nlog/wiki/Configuration-file | |
for information on customizing logging rules and outputs. | |
--> | |
<targets> | |
<!-- add your targets here --> | |
<target name="logfile" xsi:type="File" |
This file contains 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
git config --global user.name "{your name}" | |
git config --global user.email "{yout email address}" | |
REM set up Notepad++ as the editor of choice | |
git config --global core.editor "'{path to notepad++}\notepad++.exe' -multiInst -notabbar -nosession -noPlugin" | |
REM set up WinMerge as the tool to use when calling "git difftool" | |
git config --global diff.tool winmerge | |
git config --global difftool.winmerge.cmd "'{path to winmergeU.exe}\winmergeU.exe' -e -u -wl -maximize \"$LOCAL\" \"$REMOTE\"" | |
git config --global difftool.prompt false |
This file contains 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
#-- Files | |
*.bak.* | |
*.bak | |
*.dll | |
*.exe | |
*.ldf | |
*.log | |
*.mdf | |
*.msi | |
*.sqlite |
This file contains 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
select | |
database_id as 'Database ID', name as 'Database Name', | |
CASE encryption_state | |
WHEN 0 THEN 'No database encryption key present, no encryption' | |
WHEN 1 THEN 'Unencrypted' | |
WHEN 2 THEN 'Encryption in progress' | |
WHEN 3 THEN 'Encrypted' | |
WHEN 4 THEN 'Key change in progress' | |
WHEN 5 THEN 'Decryption in progress' | |
WHEN 6 THEN 'Protection change in progress' |
This file contains 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
# ignore all files in this directory | |
* | |
# except for these files | |
!.gitignore | |
# and except nested directories (remove if no sub-dirs should be tracked) | |
!*/ |
This file contains 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
rem Git-TF can be found here https://gittf.codeplex.com/ | |
rem call "{path to git-tf}\git-tf help clone" for available command options | |
{path to git-tf}\git-tf clone {project collection URL} {project path to be cloned} {target directory for clone} --deep --no-tag | |
rem example: | |
rem git-tf clone http://tfs:8080/tfs/DefaultCollection $/some_project c:\dev\some_project.git --deep --no-tag | |
rem ----- | |
rem alternative: see https://github.com/git-tfs/git-tfs |
This file contains 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
// To Compare | |
Extensions: .* | |
Operation: Compare | |
Command: C:\Program Files (x86)\WinMerge\WinMergeU.exe | |
Arguments: /maximize /e /u /wl /dl %6 /dr %7 %1 %2 | |
// To Merge | |
Extensions: .* | |
Operation: Merge | |
Command: C:\Program Files (x86)\WinMerge\WinMergeU.exe |
This file contains 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
rem display current Wi-Fi connection info including SSID | |
netsh wlan show interface | |
rem display more details of current Wi-Fi connection | |
rem NOTE: replace {SSID} with value from found with previous command | |
netsh wlan show profiles name={SSID} | |
rem same as above, but includes the password | |
netsh wlan show profiles name={SSID} key=clear |
OlderNewer