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
| <RunConfiguration> | |
| <!-- Path relative to solution directory --> | |
| <ResultsDirectory>.\TestResults</ResultsDirectory> | |
| <!-- [x86] | x64 | |
| - You can also change it from menu Test, Test Settings, Default Processor Architecture --> | |
| <TargetPlatform>x86</TargetPlatform> | |
| <!-- Framework35 | [Framework40] | Framework45 --> | |
| <TargetFrameworkVersion>Framework40</TargetFrameworkVersion> |
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
| [diff] | |
| tool = vsdiffmerge | |
| [difftool] | |
| prompt = true | |
| [difftool "vsdiffmerge"] | |
| cmd = \"vsdiffmerge.exe\" \"$LOCAL\" \"$REMOTE\" //t | |
| keepbackup = false | |
| trustexistcode = true | |
| [merge] | |
| tool = vsdiffmerge |
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
| if (sln_open) { | |
| sln_filename + (exec git_branch 5 "git rev-parse --abbrev-ref HEAD" sln_dir ? " git["+git_branch+"]") + " "+sln_dir + (exec git_rem 5 "git remote " sln_dir ? " Rems:["+git_rem+"]") | |
| +" "+(exec git_stat 5 "git status -s" sln_dir ? "Status:["+git_stat+"]") | |
| } else { | |
| "VS" + vs_version | |
| } |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <configuration> | |
| <solution> | |
| <add key="disableSourceControlIntegration" value="true" /> | |
| </solution> | |
| <packageSources> | |
| <add key="NuGet official package source" value="http://nuget.org/api/v2/" /> | |
| <add key="OurInternal" value="http://ourinternal.nugetserver.utl/nuget" /> | |
| </packageSources> | |
| </configuration> |
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
| public class ResourceLoader : ILoader | |
| { | |
| public XDocument LoadXml(string resourcename) | |
| { | |
| var content = ReadResource(resourcename); | |
| return XDocument.Parse(content); | |
| } | |
| private string ReadResource(string resourcename) | |
| { |
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
| If authorized: | |
| HTTP/1.1 404 Not Found | |
| Cache-Control: private | |
| Content-Type: text/html; charset=utf-8 | |
| Server: Microsoft-IIS/8.5 | |
| X-TFS-ProcessId: 4e01732e-1319-41d8-b267-0c7a5950cdcb | |
| X-FRAME-OPTIONS: SAMEORIGIN | |
| Access-Control-Allow-Origin: * | |
| Access-Control-Max-Age: 3600 |
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
| // This code is grabbed off https://gist.github.com/OsirisTerje/7437743 | |
| using System; | |
| namespace NUnit.Framework | |
| { | |
| public class TestClassAttribute : TestFixtureAttribute | |
| { } | |
| public class TestMethodAttribute: TestAttribute |
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
| Microsoft Visual Studio Solution File, Format Version 12.00 | |
| # Visual Studio 14 | |
| VisualStudioVersion = 14.0.24720.0 | |
| MinimumVisualStudioVersion = 10.0.40219.1 |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion] | |
| "ForceLog"=dword:00000000 | |
| "LogFailures"=dword:00000000 | |
| "EnableLog"=dword:00000000 | |
| "LogResourceBinds"=dword:00000000 |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion] | |
| "ForceLog"=dword:00000001 | |
| "LogFailures"=dword:00000001 | |
| "EnableLog"=dword:00000001 | |
| "LogPath"="C:\\fusionlog\\" | |
| "LogResourceBinds"=dword:00000000 |
OlderNewer