Skip to content

Commit 5ed8d72

Browse files
committed
Updated to NET Standard 2.0
1 parent 9a1ae98 commit 5ed8d72

File tree

6 files changed

+264
-228
lines changed

6 files changed

+264
-228
lines changed

.gitignore

Lines changed: 221 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,73 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
3+
##
4+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
35

46
# User-specific files
57
*.suo
68
*.user
9+
*.userosscache
710
*.sln.docstates
811

9-
# Build results
12+
# User-specific files (MonoDevelop/Xamarin Studio)
13+
*.userprefs
1014

15+
# Build results
1116
[Dd]ebug/
17+
[Dd]ebugPublic/
1218
[Rr]elease/
19+
[Rr]eleases/
1320
x64/
14-
build/
21+
x86/
22+
bld/
1523
[Bb]in/
1624
[Oo]bj/
25+
[Ll]og/
26+
27+
# Visual Studio 2015/2017 cache/options directory
28+
.vs/
29+
# Uncomment if you have tasks that create the project's static files in wwwroot
30+
#wwwroot/
1731

18-
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
19-
!packages/*/build/
32+
# Visual Studio 2017 auto generated files
33+
Generated\ Files/
2034

2135
# MSTest test Results
2236
[Tt]est[Rr]esult*/
2337
[Bb]uild[Ll]og.*
2438

39+
# NUNIT
40+
*.VisualState.xml
41+
TestResult.xml
42+
43+
# Build Results of an ATL Project
44+
[Dd]ebugPS/
45+
[Rr]eleasePS/
46+
dlldata.c
47+
48+
# Benchmark Results
49+
BenchmarkDotNet.Artifacts/
50+
51+
# .NET Core
52+
project.lock.json
53+
project.fragment.lock.json
54+
artifacts/
55+
**/Properties/launchSettings.json
56+
57+
# StyleCop
58+
StyleCopReport.xml
59+
60+
# Files built by Visual Studio
2561
*_i.c
2662
*_p.c
63+
*_i.h
2764
*.ilk
2865
*.meta
2966
*.obj
67+
*.iobj
3068
*.pch
3169
*.pdb
70+
*.ipdb
3271
*.pgc
3372
*.pgd
3473
*.rsp
@@ -43,38 +82,71 @@ build/
4382
*.vssscc
4483
.builds
4584
*.pidb
46-
*.log
85+
*.svclog
4786
*.scc
4887

88+
# Chutzpah Test files
89+
_Chutzpah*
90+
4991
# Visual C++ cache files
5092
ipch/
5193
*.aps
5294
*.ncb
95+
*.opendb
5396
*.opensdf
5497
*.sdf
5598
*.cachefile
99+
*.VC.db
100+
*.VC.VC.opendb
56101

57102
# Visual Studio profiler
58103
*.psess
59104
*.vsp
60105
*.vspx
106+
*.sap
107+
108+
# Visual Studio Trace Files
109+
*.e2e
110+
111+
# TFS 2012 Local Workspace
112+
$tf/
61113

62114
# Guidance Automation Toolkit
63115
*.gpState
64116

65117
# ReSharper is a .NET coding add-in
66118
_ReSharper*/
67119
*.[Rr]e[Ss]harper
120+
*.DotSettings.user
121+
122+
# JustCode is a .NET coding add-in
123+
.JustCode
68124

69125
# TeamCity is a build add-in
70126
_TeamCity*
71127

72128
# DotCover is a Code Coverage Tool
73129
*.dotCover
74130

131+
# AxoCover is a Code Coverage Tool
132+
.axoCover/*
133+
!.axoCover/settings.json
134+
135+
# Visual Studio code coverage results
136+
*.coverage
137+
*.coveragexml
138+
75139
# NCrunch
76-
*.ncrunch*
140+
_NCrunch_*
77141
.*crunch*.local.xml
142+
nCrunchTemp_*
143+
144+
# MightyMoose
145+
*.mm.*
146+
AutoTest.Net/
147+
148+
# Web workbench (sass)
149+
.sass-cache/
78150

79151
# Installshield output folder
80152
[Ee]xpress/
@@ -93,64 +165,176 @@ DocProject/Help/html
93165
publish/
94166

95167
# Publish Web Output
96-
*.Publish.xml
168+
*.[Pp]ublish.xml
169+
*.azurePubxml
170+
# Note: Comment the next line if you want to checkin your web deploy settings,
171+
# but database connection strings (with potential passwords) will be unencrypted
172+
*.pubxml
173+
*.publishproj
174+
175+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
176+
# checkin your Azure Web App publish settings, but sensitive information contained
177+
# in these scripts will be unencrypted
178+
PublishScripts/
97179

98-
# NuGet Packages Directory
99-
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
100-
#packages/
180+
# NuGet Packages
181+
*.nupkg
182+
# The packages folder can be ignored because of Package Restore
183+
**/[Pp]ackages/*
184+
# except build/, which is used as an MSBuild target.
185+
!**/[Pp]ackages/build/
186+
# Uncomment if necessary however generally it will be regenerated when needed
187+
#!**/[Pp]ackages/repositories.config
188+
# NuGet v3's project.json files produces more ignorable files
189+
*.nuget.props
190+
*.nuget.targets
101191

102-
# Windows Azure Build Output
103-
csx
192+
# Microsoft Azure Build Output
193+
csx/
104194
*.build.csdef
105195

106-
# Windows Store app package directory
196+
# Microsoft Azure Functions
197+
local.settings.json
198+
199+
# Microsoft Azure Emulator
200+
ecf/
201+
rcf/
202+
203+
# Windows Store app package directories and files
107204
AppPackages/
205+
BundleArtifacts/
206+
Package.StoreAssociation.xml
207+
_pkginfo.txt
208+
209+
# Visual Studio cache files
210+
# files ending in .cache can be ignored
211+
*.[Cc]ache
212+
# but keep track of directories ending in .cache
213+
!*.[Cc]ache/
108214

109215
# Others
110-
sql/
111-
*.Cache
112216
ClientBin/
113-
[Ss]tyle[Cc]op.*
114217
~$*
115218
*~
116219
*.dbmdl
117-
*.[Pp]ublish.xml
220+
*.dbproj.schemaview
221+
*.jfm
118222
*.pfx
119223
*.publishsettings
224+
orleans.codegen.cs
225+
226+
# Including strong name files can present a security risk
227+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
228+
#*.snk
229+
230+
# Since there are multiple workflows, uncomment next line to ignore bower_components
231+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
232+
#bower_components/
120233

121234
# RIA/Silverlight projects
122235
Generated_Code/
123236

124-
# Backup & report files from converting an old project file to a newer
125-
# Visual Studio version. Backup files are not needed, because we have git ;-)
237+
# Backup & report files from converting an old project file
238+
# to a newer Visual Studio version. Backup files are not needed,
239+
# because we have git ;-)
126240
_UpgradeReport_Files/
127241
Backup*/
128242
UpgradeLog*.XML
129243
UpgradeLog*.htm
244+
ServiceFabricBackup/
245+
*.rptproj.bak
130246

131247
# SQL Server files
132-
App_Data/*.mdf
133-
App_Data/*.ldf
248+
*.mdf
249+
*.ldf
250+
*.ndf
251+
252+
# Business Intelligence projects
253+
*.rdl.data
254+
*.bim.layout
255+
*.bim_*.settings
256+
*.rptproj.rsuser
257+
258+
# Microsoft Fakes
259+
FakesAssemblies/
260+
261+
# GhostDoc plugin setting file
262+
*.GhostDoc.xml
263+
264+
# Node.js Tools for Visual Studio
265+
.ntvs_analysis.dat
266+
node_modules/
267+
268+
# Visual Studio 6 build log
269+
*.plg
270+
271+
# Visual Studio 6 workspace options file
272+
*.opt
273+
274+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
275+
*.vbw
276+
277+
# Visual Studio LightSwitch build output
278+
**/*.HTMLClient/GeneratedArtifacts
279+
**/*.DesktopClient/GeneratedArtifacts
280+
**/*.DesktopClient/ModelManifest.xml
281+
**/*.Server/GeneratedArtifacts
282+
**/*.Server/ModelManifest.xml
283+
_Pvt_Extensions
284+
285+
# Paket dependency manager
286+
.paket/paket.exe
287+
paket-files/
288+
289+
# FAKE - F# Make
290+
.fake/
291+
292+
# JetBrains Rider
293+
.idea/
294+
*.sln.iml
295+
296+
# CodeRush
297+
.cr/
298+
299+
# Python Tools for Visual Studio (PTVS)
300+
__pycache__/
301+
*.pyc
302+
303+
# Cake - Uncomment if you are using it
304+
# tools/**
305+
# !tools/packages.config
306+
307+
# Tabs Studio
308+
*.tss
309+
310+
# Telerik's JustMock configuration file
311+
*.jmconfig
312+
313+
# BizTalk build output
314+
*.btp.cs
315+
*.btm.cs
316+
*.odx.cs
317+
*.xsd.cs
134318

319+
# OpenCover UI analysis results
320+
OpenCover/
135321

136-
#LightSwitch generated files
137-
GeneratedArtifacts/
138-
_Pvt_Extensions/
139-
ModelManifest.xml
322+
# Azure Stream Analytics local run output
323+
ASALocalRun/
140324

141-
# =========================
142-
# Windows detritus
143-
# =========================
325+
# MSBuild Binary and Structured Log
326+
*.binlog
144327

145-
# Windows image file caches
146-
Thumbs.db
147-
ehthumbs.db
328+
# NVidia Nsight GPU debugger configuration file
329+
*.nvuser
148330

149-
# Folder config file
150-
Desktop.ini
331+
# MFractors (Xamarin productivity tool) working folder
332+
.mfractor/
151333

152-
# Recycle Bin used on file shares
153-
$RECYCLE.BIN/
334+
# Orchard Core
335+
**/wwwroot/is-cache
336+
**/App_Data
337+
**/Localization/**/*.po
154338

155-
# Mac desktop service store files
156-
.DS_Store
339+
# Xamarin Android
340+
**Android/Resources/Resource.designer.cs

StringBuilderExtensions.sln

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.29924.181
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StringBuilderExtensions", "StringBuilderExtensions\StringBuilderExtensions.csproj", "{01E836D1-40BF-49FA-9EE6-65EBB2F76650}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StringBuilderExtensions", "StringBuilderExtensions\StringBuilderExtensions.csproj", "{01E836D1-40BF-49FA-9EE6-65EBB2F76650}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StringBuilderExtensionsTests", "StringBuilderExtensionsTests\StringBuilderExtensionsTests.csproj", "{054701DF-D8ED-434F-B708-075861F611D2}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StringBuilderExtensionsTests", "StringBuilderExtensionsTests\StringBuilderExtensionsTests.csproj", "{054701DF-D8ED-434F-B708-075861F611D2}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{407C25AD-A79E-442D-A1EF-8ED289439CC0}"
11+
ProjectSection(SolutionItems) = preProject
12+
license.md = license.md
13+
readme.md = readme.md
14+
EndProjectSection
1115
EndProject
1216
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GitHub", "GitHub", "{7E7071CA-1460-450E-AFA2-4134C15080CA}"
1317
ProjectSection(SolutionItems) = preProject

0 commit comments

Comments
 (0)