Skip to content

Commit 9649dcf

Browse files
committed
Initial commit
0 parents  commit 9649dcf

52 files changed

Lines changed: 3715 additions & 0 deletions

Some content is hidden

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

.gitignore

Lines changed: 216 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,216 @@
1+
# Download this file using PowerShell v3 under Windows with the following comand:
2+
# Invoke-WebRequest https://gist.githubusercontent.com/kmorcinek/2710267/raw/ -OutFile .gitignore
3+
# or wget:
4+
# wget --no-check-certificate http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore
5+
6+
# User-specific files
7+
*.suo
8+
*.user
9+
*.sln.docstates
10+
11+
# Build results
12+
[Dd]ebug/
13+
[Rr]elease/
14+
x64/
15+
[Bb]in/
16+
[Oo]bj/
17+
# build folder is nowadays used for build scripts and should not be ignored
18+
#build/
19+
20+
# NuGet Packages
21+
*.nupkg
22+
# The packages folder can be ignored because of Package Restore
23+
**/packages/*
24+
# except build/, which is used as an MSBuild target.
25+
!**/packages/build/
26+
# Uncomment if necessary however generally it will be regenerated when needed
27+
#!**/packages/repositories.config
28+
29+
# MSTest test Results
30+
[Tt]est[Rr]esult*/
31+
[Bb]uild[Ll]og.*
32+
33+
*_i.c
34+
*_p.c
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+
*.log
55+
*.scc
56+
57+
# OS generated files #
58+
.DS_Store*
59+
Icon?
60+
61+
# Visual C++ cache files
62+
ipch/
63+
*.aps
64+
*.ncb
65+
*.opensdf
66+
*.sdf
67+
*.cachefile
68+
69+
# Visual Studio profiler
70+
*.psess
71+
*.vsp
72+
*.vspx
73+
74+
# Guidance Automation Toolkit
75+
*.gpState
76+
77+
# ReSharper is a .NET coding add-in
78+
_ReSharper*/
79+
*.[Rr]e[Ss]harper
80+
81+
# TeamCity is a build add-in
82+
_TeamCity*
83+
84+
# DotCover is a Code Coverage Tool
85+
*.dotCover
86+
87+
# NCrunch
88+
*.ncrunch*
89+
.*crunch*.local.xml
90+
91+
# Installshield output folder
92+
[Ee]xpress/
93+
94+
# DocProject is a documentation generator add-in
95+
DocProject/buildhelp/
96+
DocProject/Help/*.HxT
97+
DocProject/Help/*.HxC
98+
DocProject/Help/*.hhc
99+
DocProject/Help/*.hhk
100+
DocProject/Help/*.hhp
101+
DocProject/Help/Html2
102+
DocProject/Help/html
103+
104+
# Click-Once directory
105+
publish/
106+
107+
# Publish Web Output
108+
*.Publish.xml
109+
110+
# Windows Azure Build Output
111+
csx
112+
*.build.csdef
113+
114+
# Windows Store app package directory
115+
AppPackages/
116+
117+
# Others
118+
*.Cache
119+
ClientBin/
120+
[Ss]tyle[Cc]op.*
121+
~$*
122+
*~
123+
*.dbmdl
124+
*.[Pp]ublish.xml
125+
*.pfx
126+
*.publishsettings
127+
modulesbin/
128+
tempbin/
129+
130+
# EPiServer Site file (VPP)
131+
AppData/
132+
133+
# RIA/Silverlight projects
134+
Generated_Code/
135+
136+
# Backup & report files from converting an old project file to a newer
137+
# Visual Studio version. Backup files are not needed, because we have git ;-)
138+
_UpgradeReport_Files/
139+
Backup*/
140+
UpgradeLog*.XML
141+
UpgradeLog*.htm
142+
143+
# vim
144+
*.txt~
145+
*.swp
146+
*.swo
147+
148+
# svn
149+
.svn
150+
151+
# CVS - Source Control
152+
**/CVS/
153+
154+
# Remainings from resolvings conflicts in Source Control
155+
*.orig
156+
157+
# SQL Server files
158+
**/App_Data/*.mdf
159+
**/App_Data/*.ldf
160+
**/App_Data/*.sdf
161+
162+
163+
#LightSwitch generated files
164+
GeneratedArtifacts/
165+
_Pvt_Extensions/
166+
ModelManifest.xml
167+
168+
# =========================
169+
# Windows detritus
170+
# =========================
171+
172+
# Windows image file caches
173+
Thumbs.db
174+
ehthumbs.db
175+
176+
# Folder config file
177+
Desktop.ini
178+
179+
# Recycle Bin used on file shares
180+
$RECYCLE.BIN/
181+
182+
# Mac desktop service store files
183+
.DS_Store
184+
185+
# SASS Compiler cache
186+
.sass-cache
187+
188+
# Visual Studio 2014 CTP
189+
**/*.sln.ide
190+
191+
# Visual Studio temp something
192+
.vs/
193+
194+
# dotnet stuff
195+
project.lock.json
196+
197+
# VS 2015+
198+
*.vc.vc.opendb
199+
*.vc.db
200+
201+
# Rider
202+
.idea/
203+
204+
# Output folder used by Webpack or other FE stuff
205+
**/node_modules/*
206+
**/wwwroot/*
207+
208+
# SpecFlow specific
209+
*.feature.cs
210+
*.feature.xlsx.*
211+
*.Specs_*.html
212+
213+
#####
214+
# End of core ignore list, below put you custom 'per project' settings (patterns or path)
215+
#####
216+
/EasyIrc.TestConsole

EasyIrc.Tests/EasyIrc.Tests.csproj

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
6+
<IsPackable>false</IsPackable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageReference Include="nunit" Version="3.12.0" />
11+
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
13+
</ItemGroup>
14+
15+
<ItemGroup>
16+
<ProjectReference Include="..\EasyIrc\EasyIrc.csproj" />
17+
</ItemGroup>
18+
19+
</Project>

0 commit comments

Comments
 (0)