Skip to content

Commit b68cba2

Browse files
committed
first commit
0 parents  commit b68cba2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2725
-0
lines changed

.gitignore

Lines changed: 172 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
# User-specific files
5+
*.suo
6+
*.user
7+
*.sln.docstates
8+
9+
# Build results
10+
[Dd]ebug/
11+
[Dd]ebugPublic/
12+
x64/
13+
build/
14+
bld/
15+
[Bb]in/
16+
[Oo]bj/
17+
.vs/
18+
19+
# MSTest test Results
20+
[Tt]est[Rr]esult*/
21+
[Bb]uild[Ll]og.*
22+
23+
#NUNIT
24+
*.VisualState.xml
25+
TestResult.xml
26+
27+
# Build Results of an ATL Project
28+
[Dd]ebugPS/
29+
[Rr]eleasePS/
30+
dlldata.c
31+
32+
*_i.c
33+
*_p.c
34+
*_i.h
35+
*.ilk
36+
*.meta
37+
*.obj
38+
*.pch
39+
#*.pdb
40+
*.pgc
41+
*.pgd
42+
*.rsp
43+
*.sbr
44+
*.tlb
45+
*.tli
46+
*.tlh
47+
*.tmp
48+
*.tmp_proj
49+
*.log
50+
*.vspscc
51+
*.vssscc
52+
.builds
53+
*.pidb
54+
*.svclog
55+
*.scc
56+
57+
# Chutzpah Test files
58+
_Chutzpah*
59+
60+
# Visual C++ cache files
61+
ipch/
62+
*.aps
63+
*.ncb
64+
*.opensdf
65+
*.sdf
66+
*.cachefile
67+
68+
# Visual Studio profiler
69+
*.psess
70+
*.vsp
71+
*.vspx
72+
73+
# TFS 2012 Local Workspace
74+
$tf/
75+
76+
# Guidance Automation Toolkit
77+
*.gpState
78+
79+
# ReSharper is a .NET coding add-in
80+
_ReSharper*/
81+
*.[Rr]e[Ss]harper
82+
*.DotSettings.user
83+
84+
# JustCode is a .NET coding addin-in
85+
.JustCode
86+
87+
# TeamCity is a build add-in
88+
_TeamCity*
89+
90+
# DotCover is a Code Coverage Tool
91+
*.dotCover
92+
93+
# NCrunch
94+
*.ncrunch*
95+
_NCrunch_*
96+
.*crunch*.local.xml
97+
98+
# MightyMoose
99+
*.mm.*
100+
AutoTest.Net/
101+
102+
# Web workbench (sass)
103+
.sass-cache/
104+
105+
# Installshield output folder
106+
[Ee]xpress/
107+
108+
# DocProject is a documentation generator add-in
109+
DocProject/buildhelp/
110+
DocProject/Help/*.HxT
111+
DocProject/Help/*.HxC
112+
DocProject/Help/*.hhc
113+
DocProject/Help/*.hhk
114+
DocProject/Help/*.hhp
115+
DocProject/Help/Html2
116+
DocProject/Help/html
117+
118+
# Publish Web Output
119+
*.[Pp]ublish.xml
120+
*.azurePubxml
121+
122+
# NuGet Packages Directory
123+
packages/
124+
## TODO: If the tool you use requires repositories.config uncomment the next line
125+
#!packages/repositories.config
126+
127+
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
128+
# This line needs to be after the ignore of the build folder (and the packages folder if the line above has been uncommented)
129+
!packages/build/
130+
131+
# Windows Azure Build Output
132+
csx/
133+
*.build.csdef
134+
135+
# Windows Store app package directory
136+
AppPackages/
137+
138+
# Others
139+
*.Cache
140+
ClientBin/
141+
[Ss]tyle[Cc]op.*
142+
~$*
143+
*~
144+
*.dbmdl
145+
*.dbproj.schemaview
146+
*.pfx
147+
*.publishsettings
148+
node_modules/
149+
150+
# RIA/Silverlight projects
151+
Generated_Code/
152+
153+
# Backup & report files from converting an old project file to a newer
154+
# Visual Studio version. Backup files are not needed, because we have git ;-)
155+
_UpgradeReport_Files/
156+
Backup*/
157+
UpgradeLog*.XML
158+
UpgradeLog*.htm
159+
160+
# SQL Server files
161+
*.mdf
162+
*.ldf
163+
164+
# Business Intelligence projects
165+
*.rdl.data
166+
*.bim.layout
167+
*.bim_*.settings
168+
169+
# Microsoft Fakes
170+
FakesAssemblies/
171+
172+
*.nupkg

NHUnitExample.sln

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30717.126
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NHUnitExample", "NHUnitExample\NHUnitExample.csproj", "{015E1AF2-34BF-4A55-AAC3-D4577150E3C9}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NHUnit", "src\NHUnit\NHUnit.csproj", "{7F540519-14D9-4DF0-83CF-FA7D084EEA65}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Release|Any CPU = Release|Any CPU
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{015E1AF2-34BF-4A55-AAC3-D4577150E3C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{015E1AF2-34BF-4A55-AAC3-D4577150E3C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{015E1AF2-34BF-4A55-AAC3-D4577150E3C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
19+
{015E1AF2-34BF-4A55-AAC3-D4577150E3C9}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{7F540519-14D9-4DF0-83CF-FA7D084EEA65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{7F540519-14D9-4DF0-83CF-FA7D084EEA65}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{7F540519-14D9-4DF0-83CF-FA7D084EEA65}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{7F540519-14D9-4DF0-83CF-FA7D084EEA65}.Release|Any CPU.Build.0 = Release|Any CPU
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {3D59CF81-71D9-426A-BB41-3EEDE28526CF}
30+
EndGlobalSection
31+
EndGlobal

0 commit comments

Comments
 (0)