Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit bf7d79f

Browse files
update .gitignore file to exclude package-lock.json file, bin and obj directories; bump .NET nuget packages; bump npm dev deps
1 parent 7e668b5 commit bf7d79f

File tree

4 files changed

+37
-126
lines changed

4 files changed

+37
-126
lines changed

‎.gitignore

Lines changed: 25 additions & 114 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
## Ignore Visual Studio temporary files, build results, and
2-
## files generated by popular Visual Studio add-ons.
3-
##
4-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5-
6-
# User-specific files
1+
# Editor directories and files
2+
.idea
73
*.suo
84
*.user
95
*.userosscache
6+
*.sln
107
*.sln.docstates
8+
*.ntvs*
9+
*.njsproj
10+
.vscode
11+
12+
# File generated by NuGet package AspNetCore.HealthChecks.UI
13+
healthchecksdb
1114

1215
# User-specific files (MonoDevelop/Xamarin Studio)
1316
*.userprefs
@@ -24,13 +27,12 @@ bld/
2427
[Oo]bj/
2528
[Ll]og/
2629

27-
# Visual Studio 2015/2017 cache/options directory
30+
# Visual Studio 2015 cache/options directory
2831
.vs/
29-
# Uncomment if you have tasks that create the project's static files in wwwroot
30-
#wwwroot/
31-
32-
# Visual Studio 2017 auto generated files
33-
Generated\ Files/
32+
/wwwroot/dist/
33+
/ClientApp/dist/
34+
/GhostUI/wwwroot/dist
35+
/GhostUI/ClientApp/dist
3436

3537
# MSTest test Results
3638
[Tt]est[Rr]esult*/
@@ -45,29 +47,19 @@ TestResult.xml
4547
[Rr]eleasePS/
4648
dlldata.c
4749

48-
# Benchmark Results
49-
BenchmarkDotNet.Artifacts/
50-
51-
# .NET Core
50+
# DNX
5251
project.lock.json
5352
project.fragment.lock.json
5453
artifacts/
55-
**/Properties/launchSettings.json
5654

57-
# StyleCop
58-
StyleCopReport.xml
59-
60-
# Files built by Visual Studio
6155
*_i.c
6256
*_p.c
6357
*_i.h
6458
*.ilk
6559
*.meta
6660
*.obj
67-
*.iobj
6861
*.pch
6962
*.pdb
70-
*.ipdb
7163
*.pgc
7264
*.pgd
7365
*.rsp
@@ -105,9 +97,6 @@ ipch/
10597
*.vspx
10698
*.sap
10799

108-
# Visual Studio Trace Files
109-
*.e2e
110-
111100
# TFS 2012 Local Workspace
112101
$tf/
113102

@@ -128,14 +117,6 @@ _TeamCity*
128117
# DotCover is a Code Coverage Tool
129118
*.dotCover
130119

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-
139120
# NCrunch
140121
_NCrunch_*
141122
.*crunch*.local.xml
@@ -167,9 +148,9 @@ publish/
167148
# Publish Web Output
168149
*.[Pp]ublish.xml
169150
*.azurePubxml
170-
# Note: Comment the next line if you want to checkin your web deploy settings,
151+
# TODO: Comment the next line if you want to checkin your web deploy settings
171152
# but database connection strings (with potential passwords) will be unencrypted
172-
*.pubxml
153+
#*.pubxml
173154
*.publishproj
174155

175156
# Microsoft Azure Web App publish settings. Comment the next line if you want to
@@ -180,12 +161,12 @@ PublishScripts/
180161
# NuGet Packages
181162
*.nupkg
182163
# The packages folder can be ignored because of Package Restore
183-
**/[Pp]ackages/*
164+
**/packages/*
184165
# except build/, which is used as an MSBuild target.
185-
!**/[Pp]ackages/build/
166+
!**/packages/build/
186167
# 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
168+
#!**/packages/repositories.config
169+
# NuGet v3's project.json files produces more ignoreable files
189170
*.nuget.props
190171
*.nuget.targets
191172

@@ -202,7 +183,6 @@ AppPackages/
202183
BundleArtifacts/
203184
Package.StoreAssociation.xml
204185
_pkginfo.txt
205-
*.appx
206186

207187
# Visual Studio cache files
208188
# files ending in .cache can be ignored
@@ -219,11 +199,10 @@ ClientBin/
219199
*.jfm
220200
*.pfx
221201
*.publishsettings
202+
node_modules/
222203
orleans.codegen.cs
223-
224-
# Including strong name files can present a security risk
225-
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
226-
#*.snk
204+
.DS_Store
205+
package-lock.json
227206

228207
# Since there are multiple workflows, uncomment next line to ignore bower_components
229208
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
@@ -239,19 +218,15 @@ _UpgradeReport_Files/
239218
Backup*/
240219
UpgradeLog*.XML
241220
UpgradeLog*.htm
242-
ServiceFabricBackup/
243-
*.rptproj.bak
244221

245222
# SQL Server files
246223
*.mdf
247224
*.ldf
248-
*.ndf
249225

250226
# Business Intelligence projects
251227
*.rdl.data
252228
*.bim.layout
253229
*.bim_*.settings
254-
*.rptproj.rsuser
255230

256231
# Microsoft Fakes
257232
FakesAssemblies/
@@ -261,17 +236,13 @@ FakesAssemblies/
261236

262237
# Node.js Tools for Visual Studio
263238
.ntvs_analysis.dat
264-
node_modules/
265239

266240
# Visual Studio 6 build log
267241
*.plg
268242

269243
# Visual Studio 6 workspace options file
270244
*.opt
271245

272-
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
273-
*.vbw
274-
275246
# Visual Studio LightSwitch build output
276247
**/*.HTMLClient/GeneratedArtifacts
277248
**/*.DesktopClient/GeneratedArtifacts
@@ -296,64 +267,4 @@ paket-files/
296267

297268
# Python Tools for Visual Studio (PTVS)
298269
__pycache__/
299-
*.pyc
300-
301-
# Cake - Uncomment if you are using it
302-
# tools/**
303-
# !tools/packages.config
304-
305-
# Tabs Studio
306-
*.tss
307-
308-
# Telerik's JustMock configuration file
309-
*.jmconfig
310-
311-
# BizTalk build output
312-
*.btp.cs
313-
*.btm.cs
314-
*.odx.cs
315-
*.xsd.cs
316-
317-
# OpenCover UI analysis results
318-
OpenCover/
319-
320-
# Azure Stream Analytics local run output
321-
ASALocalRun/
322-
323-
# MSBuild Binary and Structured Log
324-
*.binlog
325-
326-
# NVidia Nsight GPU debugger configuration file
327-
*.nvuser
328-
329-
# MFractors (Xamarin productivity tool) working folder
330-
.mfractor/
331-
332-
/.vs/sln/v15
333-
334-
.DS_Store
335-
.ntvs_analysis.dat
336-
node_modules/
337-
.git/
338-
dist/
339-
340-
tests/e2e/reports/
341-
selenium-debug.log
342-
343-
# local env files
344-
.env.local
345-
.env.*.local
346-
347-
# Log files
348-
npm-debug.log*
349-
yarn-debug.log*
350-
yarn-error.log*
351-
352-
# Editor directories and files
353-
.idea
354-
.vscode
355-
*.suo
356-
*.ntvs*
357-
*.njsproj
358-
*.sln
359-
*.sw*
270+
*.pyc

‎FullStackTesting/FullStackTesting.Web.Api/ClientApp/package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎FullStackTesting/FullStackTesting.Web.Api/ClientApp/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
"@vue/test-utils": "1.1.3",
3434
"node-sass": "^5.0.0",
3535
"sass-loader": "^10.1.1",
36-
"ts-jest": "^26.5.1",
37-
"typescript": "^4.1.5",
36+
"ts-jest": "^26.5.2",
37+
"typescript": "^4.2.2",
3838
"vue-template-compiler": "^2.6.12",
3939
"vuex-module-decorators": "^1.0.1"
4040
}

‎FullStackTesting/tests/FullStackTesting.Web.Api.IntegrationTests/FullStackTesting.Web.Api.IntegrationTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<ItemGroup>
1111
<FrameworkReference Include="Microsoft.AspNetCore.App" />
1212
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="5.0.3" />
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.1" />
1414
<PackageReference Include="xunit" Version="2.4.1" />
1515
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
1616
<PrivateAssets>all</PrivateAssets>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /