Skip to content

Commit 3cabf4e

Browse files
Fix previously upload err
1 parent 0bcf3ee commit 3cabf4e

File tree

10 files changed

+254076
-11
lines changed

10 files changed

+254076
-11
lines changed

.gitignore

Lines changed: 283 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,286 @@ data.csv
2525
/scintilla
2626
/bin
2727
/SQL
28+
29+
## Ignore Visual Studio temporary files, build results, and
30+
## files generated by popular Visual Studio add-ons.
31+
32+
# User-specific files
33+
*.suo
34+
*.user
35+
*.userosscache
36+
*.sln.docstates
37+
38+
# User-specific files (MonoDevelop/Xamarin Studio)
39+
*.userprefs
40+
41+
# Build results
42+
[Dd]ebug/
43+
[Dd]ebugPublic/
44+
[Rr]elease/
45+
[Rr]eleases/
46+
x64/
47+
x86/
48+
bld/
49+
[Bb]in/
50+
[Oo]bj/
51+
[Ll]og/
52+
53+
# Visual Studio 2015 cache/options directory
54+
.vs/
55+
# Uncomment if you have tasks that create the project's static files in wwwroot
56+
#wwwroot/
57+
58+
# MSTest test Results
59+
[Tt]est[Rr]esult*/
60+
[Bb]uild[Ll]og.*
61+
62+
# NUNIT
63+
*.VisualState.xml
64+
TestResult.xml
65+
66+
# Build Results of an ATL Project
67+
[Dd]ebugPS/
68+
[Rr]eleasePS/
69+
dlldata.c
70+
71+
# DNX
72+
project.lock.json
73+
project.fragment.lock.json
74+
artifacts/
75+
76+
*_i.c
77+
*_p.c
78+
*_i.h
79+
*.ilk
80+
*.meta
81+
*.obj
82+
*.pch
83+
*.pdb
84+
*.pgc
85+
*.pgd
86+
*.rsp
87+
*.sbr
88+
*.tlb
89+
*.tli
90+
*.tlh
91+
*.tmp
92+
*.tmp_proj
93+
*.log
94+
*.vspscc
95+
*.vssscc
96+
.builds
97+
*.pidb
98+
*.svclog
99+
*.scc
100+
101+
# Chutzpah Test files
102+
_Chutzpah*
103+
104+
# Visual C++ cache files
105+
ipch/
106+
*.aps
107+
*.ncb
108+
*.opendb
109+
*.opensdf
110+
*.sdf
111+
*.cachefile
112+
*.VC.db
113+
*.VC.VC.opendb
114+
115+
# Visual Studio profiler
116+
*.psess
117+
*.vsp
118+
*.vspx
119+
*.sap
120+
121+
# TFS 2012 Local Workspace
122+
$tf/
123+
124+
# Guidance Automation Toolkit
125+
*.gpState
126+
127+
# ReSharper is a .NET coding add-in
128+
_ReSharper*/
129+
*.[Rr]e[Ss]harper
130+
*.DotSettings.user
131+
132+
# JustCode is a .NET coding add-in
133+
.JustCode
134+
135+
# TeamCity is a build add-in
136+
_TeamCity*
137+
138+
# DotCover is a Code Coverage Tool
139+
*.dotCover
140+
141+
# NCrunch
142+
_NCrunch_*
143+
.*crunch*.local.xml
144+
nCrunchTemp_*
145+
146+
# MightyMoose
147+
*.mm.*
148+
AutoTest.Net/
149+
150+
# Web workbench (sass)
151+
.sass-cache/
152+
153+
# Installshield output folder
154+
[Ee]xpress/
155+
156+
# DocProject is a documentation generator add-in
157+
DocProject/buildhelp/
158+
DocProject/Help/*.HxT
159+
DocProject/Help/*.HxC
160+
DocProject/Help/*.hhc
161+
DocProject/Help/*.hhk
162+
DocProject/Help/*.hhp
163+
DocProject/Help/Html2
164+
DocProject/Help/html
165+
166+
# Click-Once directory
167+
publish/
168+
169+
# Publish Web Output
170+
*.[Pp]ublish.xml
171+
*.azurePubxml
172+
# TODO: Comment the next line if you want to checkin your web deploy settings
173+
# but database connection strings (with potential passwords) will be unencrypted
174+
#*.pubxml
175+
*.publishproj
176+
177+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
178+
# checkin your Azure Web App publish settings, but sensitive information contained
179+
# in these scripts will be unencrypted
180+
PublishScripts/
181+
182+
# NuGet Packages
183+
*.nupkg
184+
# The packages folder can be ignored because of Package Restore
185+
**/packages/*
186+
# except build/, which is used as an MSBuild target.
187+
!**/packages/build/
188+
# Uncomment if necessary however generally it will be regenerated when needed
189+
#!**/packages/repositories.config
190+
# NuGet v3's project.json files produces more ignoreable files
191+
*.nuget.props
192+
*.nuget.targets
193+
194+
# Microsoft Azure Build Output
195+
csx/
196+
*.build.csdef
197+
198+
# Microsoft Azure Emulator
199+
ecf/
200+
rcf/
201+
202+
# Windows Store app package directories and files
203+
AppPackages/
204+
BundleArtifacts/
205+
Package.StoreAssociation.xml
206+
_pkginfo.txt
207+
208+
# Visual Studio cache files
209+
# files ending in .cache can be ignored
210+
*.[Cc]ache
211+
# but keep track of directories ending in .cache
212+
!*.[Cc]ache/
213+
214+
# Others
215+
ClientBin/
216+
~$*
217+
*~
218+
*.dbmdl
219+
*.dbproj.schemaview
220+
*.jfm
221+
*.pfx
222+
*.publishsettings
223+
node_modules/
224+
orleans.codegen.cs
225+
226+
# Since there are multiple workflows, uncomment next line to ignore bower_components
227+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
228+
#bower_components/
229+
230+
# RIA/Silverlight projects
231+
Generated_Code/
232+
233+
# Backup & report files from converting an old project file
234+
# to a newer Visual Studio version. Backup files are not needed,
235+
# because we have git ;-)
236+
_UpgradeReport_Files/
237+
Backup*/
238+
UpgradeLog*.XML
239+
UpgradeLog*.htm
240+
241+
# SQL Server files
242+
*.mdf
243+
*.ldf
244+
245+
# Business Intelligence projects
246+
*.rdl.data
247+
*.bim.layout
248+
*.bim_*.settings
249+
250+
# Microsoft Fakes
251+
FakesAssemblies/
252+
253+
# GhostDoc plugin setting file
254+
*.GhostDoc.xml
255+
256+
# Node.js Tools for Visual Studio
257+
.ntvs_analysis.dat
258+
259+
# Visual Studio 6 build log
260+
*.plg
261+
262+
# Visual Studio 6 workspace options file
263+
*.opt
264+
265+
# Visual Studio LightSwitch build output
266+
**/*.HTMLClient/GeneratedArtifacts
267+
**/*.DesktopClient/GeneratedArtifacts
268+
**/*.DesktopClient/ModelManifest.xml
269+
**/*.Server/GeneratedArtifacts
270+
**/*.Server/ModelManifest.xml
271+
_Pvt_Extensions
272+
273+
# Paket dependency manager
274+
.paket/paket.exe
275+
paket-files/
276+
277+
# FAKE - F# Make
278+
.fake/
279+
280+
# JetBrains Rider
281+
.idea/
282+
*.sln.iml
283+
284+
# CodeRush
285+
.cr/
286+
287+
# Python Tools for Visual Studio (PTVS)
288+
__pycache__/
289+
*.pyc
290+
291+
# Exclude associated build files and folders
292+
LocalPackageRepository/
293+
MediaFileDuplicateFinder_Setup.vdproj_temp.vdproj
294+
295+
# Exclude projects which are not ready to be included in this solution.
296+
TranslateFileNames/
297+
ffmpeg_source/
298+
299+
# Exclude test data and temp files
300+
Test_Data/
301+
*__ExcludeFromRepo__*.*
302+
*__DoNotAddToRepo__*.*
303+
304+
# Exclude reparsepoint files which are used to help view file using VS
305+
*.xaml.xml
306+
gitignore.txt
307+
308+
# Exclude temp and backup files
309+
*.bak
310+

SQLiteClassBuilder.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 17
4+
VisualStudioVersion = 17.6.33513.286
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLiteClassBuilder", "SQLiteClassBuilder.vcxproj", "{FE3A9A4C-5357-4D2A-BE8E-E61EDDDC3533}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|x64 = Debug|x64
11+
Debug|x86 = Debug|x86
12+
Release|x64 = Release|x64
13+
Release|x86 = Release|x86
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{FE3A9A4C-5357-4D2A-BE8E-E61EDDDC3533}.Debug|x64.ActiveCfg = Debug|x64
17+
{FE3A9A4C-5357-4D2A-BE8E-E61EDDDC3533}.Debug|x64.Build.0 = Debug|x64
18+
{FE3A9A4C-5357-4D2A-BE8E-E61EDDDC3533}.Debug|x86.ActiveCfg = Debug|Win32
19+
{FE3A9A4C-5357-4D2A-BE8E-E61EDDDC3533}.Debug|x86.Build.0 = Debug|Win32
20+
{FE3A9A4C-5357-4D2A-BE8E-E61EDDDC3533}.Release|x64.ActiveCfg = Release|x64
21+
{FE3A9A4C-5357-4D2A-BE8E-E61EDDDC3533}.Release|x64.Build.0 = Release|x64
22+
{FE3A9A4C-5357-4D2A-BE8E-E61EDDDC3533}.Release|x86.ActiveCfg = Release|Win32
23+
{FE3A9A4C-5357-4D2A-BE8E-E61EDDDC3533}.Release|x86.Build.0 = Release|Win32
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {D9531444-A002-4847-BFD5-DBF755C99144}
30+
EndGlobalSection
31+
EndGlobal

SQLiteClassBuilder.vcxproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,35 +23,35 @@
2323
<ProjectGuid>{FE3A9A4C-5357-4D2A-BE8E-E61EDDDC3533}</ProjectGuid>
2424
<Keyword>Win32Proj</Keyword>
2525
<RootNamespace>SQLiteClassBuilder</RootNamespace>
26-
<WindowsTargetPlatformVersion>10.0.20348.0</WindowsTargetPlatformVersion>
26+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
2727
</PropertyGroup>
2828
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2929
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3030
<ConfigurationType>Application</ConfigurationType>
3131
<UseDebugLibraries>true</UseDebugLibraries>
32-
<PlatformToolset>v141</PlatformToolset>
32+
<PlatformToolset>v143</PlatformToolset>
3333
<CharacterSet>Unicode</CharacterSet>
3434
<UseOfMfc>Static</UseOfMfc>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<UseDebugLibraries>false</UseDebugLibraries>
39-
<PlatformToolset>v141</PlatformToolset>
39+
<PlatformToolset>v143</PlatformToolset>
4040
<WholeProgramOptimization>true</WholeProgramOptimization>
4141
<CharacterSet>Unicode</CharacterSet>
4242
<UseOfMfc>Static</UseOfMfc>
4343
</PropertyGroup>
4444
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4545
<ConfigurationType>Application</ConfigurationType>
4646
<UseDebugLibraries>true</UseDebugLibraries>
47-
<PlatformToolset>v141</PlatformToolset>
47+
<PlatformToolset>v143</PlatformToolset>
4848
<CharacterSet>Unicode</CharacterSet>
4949
<UseOfMfc>Static</UseOfMfc>
5050
</PropertyGroup>
5151
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5252
<ConfigurationType>Application</ConfigurationType>
5353
<UseDebugLibraries>false</UseDebugLibraries>
54-
<PlatformToolset>v141</PlatformToolset>
54+
<PlatformToolset>v143</PlatformToolset>
5555
<WholeProgramOptimization>true</WholeProgramOptimization>
5656
<CharacterSet>Unicode</CharacterSet>
5757
<UseOfMfc>Static</UseOfMfc>

0 commit comments

Comments
 (0)