forked from AndyStewart/gildedrose
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added solution and sublime configure sublime project
- Loading branch information
1 parent
33f125c
commit 79f2d95
Showing
9 changed files
with
428 additions
and
502 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,116 @@ | ||
obj | ||
bin | ||
Bin | ||
_ReSharper.* | ||
*.csproj.user | ||
*.resharper.user | ||
*.resharper | ||
*.sw* | ||
*.orig | ||
**/tags | ||
## Ignore Visual Studio temporary files, build results, and | ||
## files generated by popular Visual Studio add-ons. | ||
|
||
# User-specific files | ||
*.suo | ||
*.cache | ||
*~ | ||
*.swp | ||
Release | ||
Debug | ||
App_Data | ||
RavenDb | ||
*.user | ||
*.sln.docstates | ||
*.sublime-workspace | ||
*.userprefs | ||
|
||
packages/ | ||
Tools | ||
build | ||
iisnode | ||
node_modules | ||
*/test-results/ | ||
# Build results | ||
|
||
[Dd]ebug*/ | ||
[Rr]elease/ | ||
|
||
#build/ | ||
|
||
|
||
[Tt]est[Rr]esult | ||
[Bb]uild[Ll]og.* | ||
|
||
*_i.c | ||
*_p.c | ||
*.ilk | ||
*.meta | ||
*.obj | ||
*.pch | ||
*.pdb | ||
*.pgc | ||
*.pgd | ||
*.rsp | ||
*.sbr | ||
*.tlb | ||
*.tli | ||
*.tlh | ||
*.tmp | ||
*.vspscc | ||
*.vssscc | ||
.builds | ||
.DS_Store | ||
.OpenIDE | ||
|
||
*.pidb | ||
|
||
*.log | ||
*.scc | ||
# Visual C++ cache files | ||
ipch/ | ||
*.aps | ||
*.ncb | ||
*.opensdf | ||
*.sdf | ||
|
||
# Visual Studio profiler | ||
*.psess | ||
*.vsp | ||
|
||
# Guidance Automation Toolkit | ||
*.gpState | ||
|
||
# ReSharper is a .NET coding add-in | ||
_ReSharper*/ | ||
|
||
*.[Rr]e[Ss]harper | ||
|
||
# NCrunch | ||
*.ncrunch* | ||
.*crunch*.local.xml | ||
|
||
# Installshield output folder | ||
[Ee]xpress | ||
|
||
# DocProject is a documentation generator add-in | ||
DocProject/buildhelp/ | ||
DocProject/Help/*.HxT | ||
DocProject/Help/*.HxC | ||
DocProject/Help/*.hhc | ||
DocProject/Help/*.hhk | ||
DocProject/Help/*.hhp | ||
DocProject/Help/Html2 | ||
DocProject/Help/html | ||
|
||
# Click-Once directory | ||
publish | ||
|
||
# Publish Web Output | ||
*.Publish.xml | ||
|
||
# Others | ||
[Bb]in | ||
[Oo]bj | ||
sql | ||
TestResults | ||
[Tt]est[Rr]esult* | ||
*.Cache | ||
ClientBin | ||
[Ss]tyle[Cc]op.* | ||
~$* | ||
*.dbmdl | ||
|
||
*.[Pp]ublish.xml | ||
|
||
Generated_Code #added for RIA/Silverlight projects | ||
|
||
# Backup & report files from converting an old project file to a newer | ||
# Visual Studio version. Backup files are not needed, because we have git ;-) | ||
_UpgradeReport_Files/ | ||
Backup*/ | ||
UpgradeLog*.XML | ||
|
||
# NuGet | ||
packages/ | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2013 | ||
VisualStudioVersion = 12.0.21005.1 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GildedRose", "GildedRose\GildedRose.csproj", "{2DE7D313-9B85-423A-8DC4-0B7EB8099C8C}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GildedRose.Tests", "GildedRose.UnitTests\GildedRose.UnitTests.csproj", "{BFC363EF-36D5-4C3E-8135-8D2635295A2F}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{2DE7D313-9B85-423A-8DC4-0B7EB8099C8C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{2DE7D313-9B85-423A-8DC4-0B7EB8099C8C}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{2DE7D313-9B85-423A-8DC4-0B7EB8099C8C}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{2DE7D313-9B85-423A-8DC4-0B7EB8099C8C}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{BFC363EF-36D5-4C3E-8135-8D2635295A2F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{BFC363EF-36D5-4C3E-8135-8D2635295A2F}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{BFC363EF-36D5-4C3E-8135-8D2635295A2F}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{BFC363EF-36D5-4C3E-8135-8D2635295A2F}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
Oops, something went wrong.