Skip to content

Commit 0777a98

Browse files
committed
initial commit
1 parent c493d45 commit 0777a98

File tree

18 files changed

+5394
-1
lines changed

18 files changed

+5394
-1
lines changed

.gitignore

Lines changed: 342 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
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+
16
# Prerequisites
27
*.d
38

@@ -50,3 +55,340 @@ modules.order
5055
Module.symvers
5156
Mkfile.old
5257
dkms.conf
58+
59+
# User-specific files
60+
*.rsuser
61+
*.suo
62+
*.user
63+
*.userosscache
64+
*.sln.docstates
65+
66+
# User-specific files (MonoDevelop/Xamarin Studio)
67+
*.userprefs
68+
69+
# Build results
70+
[Dd]ebug/
71+
[Dd]ebugPublic/
72+
[Rr]elease/
73+
[Rr]eleases/
74+
x64/
75+
x86/
76+
bld/
77+
[Bb]in/
78+
[Oo]bj/
79+
[Ll]og/
80+
81+
# Visual Studio 2015/2017 cache/options directory
82+
.vs/
83+
# Uncomment if you have tasks that create the project's static files in wwwroot
84+
#wwwroot/
85+
86+
# Visual Studio 2017 auto generated files
87+
Generated\ Files/
88+
89+
# MSTest test Results
90+
[Tt]est[Rr]esult*/
91+
[Bb]uild[Ll]og.*
92+
93+
# NUNIT
94+
*.VisualState.xml
95+
TestResult.xml
96+
97+
# Build Results of an ATL Project
98+
[Dd]ebugPS/
99+
[Rr]eleasePS/
100+
dlldata.c
101+
102+
# Benchmark Results
103+
BenchmarkDotNet.Artifacts/
104+
105+
# .NET Core
106+
project.lock.json
107+
project.fragment.lock.json
108+
artifacts/
109+
110+
# StyleCop
111+
StyleCopReport.xml
112+
113+
# Files built by Visual Studio
114+
*_i.c
115+
*_p.c
116+
*_h.h
117+
*.ilk
118+
*.meta
119+
*.obj
120+
*.iobj
121+
*.pch
122+
*.pdb
123+
*.ipdb
124+
*.pgc
125+
*.pgd
126+
*.rsp
127+
*.sbr
128+
*.tlb
129+
*.tli
130+
*.tlh
131+
*.tmp
132+
*.tmp_proj
133+
*_wpftmp.csproj
134+
*.log
135+
*.vspscc
136+
*.vssscc
137+
.builds
138+
*.pidb
139+
*.svclog
140+
*.scc
141+
142+
# Chutzpah Test files
143+
_Chutzpah*
144+
145+
# Visual C++ cache files
146+
ipch/
147+
*.aps
148+
*.ncb
149+
*.opendb
150+
*.opensdf
151+
*.sdf
152+
*.cachefile
153+
*.VC.db
154+
*.VC.VC.opendb
155+
156+
# Visual Studio profiler
157+
*.psess
158+
*.vsp
159+
*.vspx
160+
*.sap
161+
162+
# Visual Studio Trace Files
163+
*.e2e
164+
165+
# TFS 2012 Local Workspace
166+
$tf/
167+
168+
# Guidance Automation Toolkit
169+
*.gpState
170+
171+
# ReSharper is a .NET coding add-in
172+
_ReSharper*/
173+
*.[Rr]e[Ss]harper
174+
*.DotSettings.user
175+
176+
# JustCode is a .NET coding add-in
177+
.JustCode
178+
179+
# TeamCity is a build add-in
180+
_TeamCity*
181+
182+
# DotCover is a Code Coverage Tool
183+
*.dotCover
184+
185+
# AxoCover is a Code Coverage Tool
186+
.axoCover/*
187+
!.axoCover/settings.json
188+
189+
# Visual Studio code coverage results
190+
*.coverage
191+
*.coveragexml
192+
193+
# NCrunch
194+
_NCrunch_*
195+
.*crunch*.local.xml
196+
nCrunchTemp_*
197+
198+
# MightyMoose
199+
*.mm.*
200+
AutoTest.Net/
201+
202+
# Web workbench (sass)
203+
.sass-cache/
204+
205+
# Installshield output folder
206+
[Ee]xpress/
207+
208+
# DocProject is a documentation generator add-in
209+
DocProject/buildhelp/
210+
DocProject/Help/*.HxT
211+
DocProject/Help/*.HxC
212+
DocProject/Help/*.hhc
213+
DocProject/Help/*.hhk
214+
DocProject/Help/*.hhp
215+
DocProject/Help/Html2
216+
DocProject/Help/html
217+
218+
# Click-Once directory
219+
publish/
220+
221+
# Publish Web Output
222+
*.[Pp]ublish.xml
223+
*.azurePubxml
224+
# Note: Comment the next line if you want to checkin your web deploy settings,
225+
# but database connection strings (with potential passwords) will be unencrypted
226+
*.pubxml
227+
*.publishproj
228+
229+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
230+
# checkin your Azure Web App publish settings, but sensitive information contained
231+
# in these scripts will be unencrypted
232+
PublishScripts/
233+
234+
# NuGet Packages
235+
*.nupkg
236+
# The packages folder can be ignored because of Package Restore
237+
**/[Pp]ackages/*
238+
# except build/, which is used as an MSBuild target.
239+
!**/[Pp]ackages/build/
240+
# Uncomment if necessary however generally it will be regenerated when needed
241+
#!**/[Pp]ackages/repositories.config
242+
# NuGet v3's project.json files produces more ignorable files
243+
*.nuget.props
244+
*.nuget.targets
245+
246+
# Microsoft Azure Build Output
247+
csx/
248+
*.build.csdef
249+
250+
# Microsoft Azure Emulator
251+
ecf/
252+
rcf/
253+
254+
# Windows Store app package directories and files
255+
AppPackages/
256+
BundleArtifacts/
257+
Package.StoreAssociation.xml
258+
_pkginfo.txt
259+
*.appx
260+
261+
# Visual Studio cache files
262+
# files ending in .cache can be ignored
263+
*.[Cc]ache
264+
# but keep track of directories ending in .cache
265+
!*.[Cc]ache/
266+
267+
# Others
268+
ClientBin/
269+
~$*
270+
*~
271+
*.dbmdl
272+
*.dbproj.schemaview
273+
*.jfm
274+
*.pfx
275+
*.publishsettings
276+
orleans.codegen.cs
277+
278+
# Including strong name files can present a security risk
279+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
280+
#*.snk
281+
282+
# Since there are multiple workflows, uncomment next line to ignore bower_components
283+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
284+
#bower_components/
285+
286+
# RIA/Silverlight projects
287+
Generated_Code/
288+
289+
# Backup & report files from converting an old project file
290+
# to a newer Visual Studio version. Backup files are not needed,
291+
# because we have git ;-)
292+
_UpgradeReport_Files/
293+
Backup*/
294+
UpgradeLog*.XML
295+
UpgradeLog*.htm
296+
ServiceFabricBackup/
297+
*.rptproj.bak
298+
299+
# SQL Server files
300+
*.mdf
301+
*.ldf
302+
*.ndf
303+
304+
# Business Intelligence projects
305+
*.rdl.data
306+
*.bim.layout
307+
*.bim_*.settings
308+
*.rptproj.rsuser
309+
310+
# Microsoft Fakes
311+
FakesAssemblies/
312+
313+
# GhostDoc plugin setting file
314+
*.GhostDoc.xml
315+
316+
# Node.js Tools for Visual Studio
317+
.ntvs_analysis.dat
318+
node_modules/
319+
320+
# Visual Studio 6 build log
321+
*.plg
322+
323+
# Visual Studio 6 workspace options file
324+
*.opt
325+
326+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
327+
*.vbw
328+
329+
# Visual Studio LightSwitch build output
330+
**/*.HTMLClient/GeneratedArtifacts
331+
**/*.DesktopClient/GeneratedArtifacts
332+
**/*.DesktopClient/ModelManifest.xml
333+
**/*.Server/GeneratedArtifacts
334+
**/*.Server/ModelManifest.xml
335+
_Pvt_Extensions
336+
337+
# Paket dependency manager
338+
.paket/paket.exe
339+
paket-files/
340+
341+
# FAKE - F# Make
342+
.fake/
343+
344+
# JetBrains Rider
345+
.idea/
346+
*.sln.iml
347+
348+
# CodeRush personal settings
349+
.cr/personal
350+
351+
# Python Tools for Visual Studio (PTVS)
352+
__pycache__/
353+
*.pyc
354+
355+
# Cake - Uncomment if you are using it
356+
# tools/**
357+
# !tools/packages.config
358+
359+
# Tabs Studio
360+
*.tss
361+
362+
# Telerik's JustMock configuration file
363+
*.jmconfig
364+
365+
# BizTalk build output
366+
*.btp.cs
367+
*.btm.cs
368+
*.odx.cs
369+
*.xsd.cs
370+
371+
# OpenCover UI analysis results
372+
OpenCover/
373+
374+
# Azure Stream Analytics local run output
375+
ASALocalRun/
376+
377+
# MSBuild Binary and Structured Log
378+
*.binlog
379+
380+
# NVidia Nsight GPU debugger configuration file
381+
*.nvuser
382+
383+
# MFractors (Xamarin productivity tool) working folder
384+
.mfractor/
385+
386+
# Local History for Visual Studio
387+
.localhistory/
388+
389+
# libcurl
390+
!/libcurl-vc14-AMD64-release-static-ipv6-sspi-winssl/*
391+
!/libcurl-vc14-AMD64-release-static-ipv6-sspi-winssl/bin/*
392+
!/libcurl-vc14-AMD64-release-static-ipv6-sspi-winssl/include/*
393+
!/libcurl-vc14-AMD64-release-static-ipv6-sspi-winssl/lib/*
394+
!/libcurl-vc14-AMD64-release-static-ipv6-sspi-winssl/lib/libcurl_a.lib

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,13 @@
1-
# json-downloader
1+
# json-downloader
2+
3+
## What is it?
4+
- OOO
5+
6+
## Requred Environment
7+
- Visual Studio 2017 x64
8+
- Windows 10 x64
9+
- Maybe it will also build on Windows 7/8 x64.
10+
11+
## License
12+
- json-downloader is under GPL License 3. [https://github.com/j2doll/json-downloader](https://github.com/j2doll/json-downloader)
13+
- curl is under MIT style license. [https://curl.haxx.se/docs/copyright.html](https://curl.haxx.se/docs/copyright.html)
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.28010.2041
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "json-downloader", "json-downloader\json-downloader.vcxproj", "{EF5FD35E-4ED0-411A-B256-162933C88054}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|x64 = Debug|x64
11+
Release|x64 = Release|x64
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{EF5FD35E-4ED0-411A-B256-162933C88054}.Debug|x64.ActiveCfg = Debug|x64
15+
{EF5FD35E-4ED0-411A-B256-162933C88054}.Debug|x64.Build.0 = Debug|x64
16+
{EF5FD35E-4ED0-411A-B256-162933C88054}.Release|x64.ActiveCfg = Release|x64
17+
{EF5FD35E-4ED0-411A-B256-162933C88054}.Release|x64.Build.0 = Release|x64
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {DB6B720C-AC70-4CEB-9452-7D1EDF1564CD}
24+
EndGlobalSection
25+
EndGlobal
2.71 KB
Binary file not shown.

0 commit comments

Comments
 (0)