Skip to content

Commit d16d021

Browse files
committed
+ 3rdparty-examples
1 parent f1b3728 commit d16d021

18 files changed

+922
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

3rdparty-examples/BatchTextCodepageConvert/.gitignore

+214
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,214 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
# User-specific files
5+
*.suo
6+
*.user
7+
*.sln.docstates
8+
9+
# Build results
10+
[Dd]ebug/
11+
[Dd]ebugPublic/
12+
[Rr]elease/
13+
x64/
14+
build/
15+
bld/
16+
[Bb]in/
17+
[Oo]bj/
18+
19+
# MSTest test Results
20+
[Tt]est[Rr]esult*/
21+
[Bb]uild[Ll]og.*
22+
23+
#NUNIT
24+
*.VisualState.xml
25+
TestResult.xml
26+
27+
# Build Results of an ATL Project
28+
[Dd]ebugPS/
29+
[Rr]eleasePS/
30+
dlldata.c
31+
32+
*_i.c
33+
*_p.c
34+
*_i.h
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+
*.svclog
55+
*.scc
56+
57+
# Chutzpah Test files
58+
_Chutzpah*
59+
60+
# Visual C++ cache files
61+
ipch/
62+
*.aps
63+
*.ncb
64+
*.opensdf
65+
*.sdf
66+
*.cachefile
67+
68+
# Visual Studio profiler
69+
*.psess
70+
*.vsp
71+
*.vspx
72+
73+
# TFS 2012 Local Workspace
74+
$tf/
75+
76+
# Guidance Automation Toolkit
77+
*.gpState
78+
79+
# ReSharper is a .NET coding add-in
80+
_ReSharper*/
81+
*.[Rr]e[Ss]harper
82+
*.DotSettings.user
83+
84+
# JustCode is a .NET coding addin-in
85+
.JustCode
86+
87+
# TeamCity is a build add-in
88+
_TeamCity*
89+
90+
# DotCover is a Code Coverage Tool
91+
*.dotCover
92+
93+
# NCrunch
94+
*.ncrunch*
95+
_NCrunch_*
96+
.*crunch*.local.xml
97+
98+
# MightyMoose
99+
*.mm.*
100+
AutoTest.Net/
101+
102+
# Web workbench (sass)
103+
.sass-cache/
104+
105+
# Installshield output folder
106+
[Ee]xpress/
107+
108+
# DocProject is a documentation generator add-in
109+
DocProject/buildhelp/
110+
DocProject/Help/*.HxT
111+
DocProject/Help/*.HxC
112+
DocProject/Help/*.hhc
113+
DocProject/Help/*.hhk
114+
DocProject/Help/*.hhp
115+
DocProject/Help/Html2
116+
DocProject/Help/html
117+
118+
# Click-Once directory
119+
publish/
120+
121+
# Publish Web Output
122+
*.[Pp]ublish.xml
123+
*.azurePubxml
124+
125+
# NuGet Packages Directory
126+
packages/
127+
## TODO: If the tool you use requires repositories.config uncomment the next line
128+
#!packages/repositories.config
129+
130+
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
131+
# This line needs to be after the ignore of the build folder (and the packages folder if the line above has been uncommented)
132+
!packages/build/
133+
134+
# Windows Azure Build Output
135+
csx/
136+
*.build.csdef
137+
138+
# Windows Store app package directory
139+
AppPackages/
140+
141+
# Others
142+
sql/
143+
*.Cache
144+
ClientBin/
145+
[Ss]tyle[Cc]op.*
146+
~$*
147+
*~
148+
*.dbmdl
149+
*.dbproj.schemaview
150+
*.pfx
151+
*.publishsettings
152+
node_modules/
153+
154+
# RIA/Silverlight projects
155+
Generated_Code/
156+
157+
# Backup & report files from converting an old project file to a newer
158+
# Visual Studio version. Backup files are not needed, because we have git ;-)
159+
_UpgradeReport_Files/
160+
Backup*/
161+
UpgradeLog*.XML
162+
UpgradeLog*.htm
163+
164+
# SQL Server files
165+
*.mdf
166+
*.ldf
167+
168+
# Business Intelligence projects
169+
*.rdl.data
170+
*.bim.layout
171+
*.bim_*.settings
172+
173+
# Microsoft Fakes
174+
FakesAssemblies/
175+
176+
# =========================
177+
# Operating System Files
178+
# =========================
179+
180+
# OSX
181+
# =========================
182+
183+
.DS_Store
184+
.AppleDouble
185+
.LSOverride
186+
187+
# Icon must ends with two \r.
188+
Icon
189+
190+
# Thumbnails
191+
._*
192+
193+
# Files that might appear on external disk
194+
.Spotlight-V100
195+
.Trashes
196+
197+
# Windows
198+
# =========================
199+
200+
# Windows image file caches
201+
Thumbs.db
202+
ehthumbs.db
203+
204+
# Folder config file
205+
Desktop.ini
206+
207+
# Recycle Bin used on file shares
208+
$RECYCLE.BIN/
209+
210+
# Windows Installer files
211+
*.cab
212+
*.msi
213+
*.msm
214+
*.msp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.30723.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BatchTextCodepageConvert", "BatchTextCodepageConvert.vcxproj", "{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}"
7+
ProjectSection(ProjectDependencies) = postProject
8+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7} = {1704EA01-6B21-4362-9F1F-44D25CF2E0D7}
9+
{0817C5DA-B779-41AD-B177-7F100106A999} = {0817C5DA-B779-41AD-B177-7F100106A999}
10+
EndProjectSection
11+
EndProject
12+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libucsd", "..\libucsd\libucsd_vs2013\libucsd.vcxproj", "{0817C5DA-B779-41AD-B177-7F100106A999}"
13+
EndProject
14+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libiconv", "..\libiconv-for-Windows\libiconv\libiconv.vcxproj", "{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}"
15+
EndProject
16+
Global
17+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
18+
Debug|Win32 = Debug|Win32
19+
Debug|x64 = Debug|x64
20+
DebugStatic|Win32 = DebugStatic|Win32
21+
DebugStatic|x64 = DebugStatic|x64
22+
Release|Win32 = Release|Win32
23+
Release|x64 = Release|x64
24+
ReleaseStatic|Win32 = ReleaseStatic|Win32
25+
ReleaseStatic|x64 = ReleaseStatic|x64
26+
EndGlobalSection
27+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
28+
{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}.Debug|Win32.ActiveCfg = Debug|Win32
29+
{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}.Debug|Win32.Build.0 = Debug|Win32
30+
{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}.Debug|x64.ActiveCfg = Debug|Win32
31+
{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}.DebugStatic|Win32.ActiveCfg = Debug|Win32
32+
{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}.DebugStatic|Win32.Build.0 = Debug|Win32
33+
{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}.DebugStatic|x64.ActiveCfg = Debug|Win32
34+
{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}.Release|Win32.ActiveCfg = Release|Win32
35+
{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}.Release|Win32.Build.0 = Release|Win32
36+
{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}.Release|x64.ActiveCfg = Release|Win32
37+
{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}.ReleaseStatic|Win32.ActiveCfg = Release|Win32
38+
{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}.ReleaseStatic|Win32.Build.0 = Release|Win32
39+
{C34F7AB5-1FF4-42D4-9817-88DE75CF948C}.ReleaseStatic|x64.ActiveCfg = Release|Win32
40+
{0817C5DA-B779-41AD-B177-7F100106A999}.Debug|Win32.ActiveCfg = Debug|Win32
41+
{0817C5DA-B779-41AD-B177-7F100106A999}.Debug|Win32.Build.0 = Debug|Win32
42+
{0817C5DA-B779-41AD-B177-7F100106A999}.Debug|x64.ActiveCfg = Debug|Win32
43+
{0817C5DA-B779-41AD-B177-7F100106A999}.DebugStatic|Win32.ActiveCfg = Debug|Win32
44+
{0817C5DA-B779-41AD-B177-7F100106A999}.DebugStatic|Win32.Build.0 = Debug|Win32
45+
{0817C5DA-B779-41AD-B177-7F100106A999}.DebugStatic|x64.ActiveCfg = Debug|Win32
46+
{0817C5DA-B779-41AD-B177-7F100106A999}.Release|Win32.ActiveCfg = Release|Win32
47+
{0817C5DA-B779-41AD-B177-7F100106A999}.Release|Win32.Build.0 = Release|Win32
48+
{0817C5DA-B779-41AD-B177-7F100106A999}.Release|x64.ActiveCfg = Release|Win32
49+
{0817C5DA-B779-41AD-B177-7F100106A999}.ReleaseStatic|Win32.ActiveCfg = Release|Win32
50+
{0817C5DA-B779-41AD-B177-7F100106A999}.ReleaseStatic|Win32.Build.0 = Release|Win32
51+
{0817C5DA-B779-41AD-B177-7F100106A999}.ReleaseStatic|x64.ActiveCfg = Release|Win32
52+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.Debug|Win32.ActiveCfg = Debug|Win32
53+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.Debug|Win32.Build.0 = Debug|Win32
54+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.Debug|x64.ActiveCfg = Debug|x64
55+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.Debug|x64.Build.0 = Debug|x64
56+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.DebugStatic|Win32.ActiveCfg = DebugStatic|Win32
57+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.DebugStatic|Win32.Build.0 = DebugStatic|Win32
58+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.DebugStatic|x64.ActiveCfg = DebugStatic|x64
59+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.DebugStatic|x64.Build.0 = DebugStatic|x64
60+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.Release|Win32.ActiveCfg = Release|Win32
61+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.Release|Win32.Build.0 = Release|Win32
62+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.Release|x64.ActiveCfg = Release|x64
63+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.Release|x64.Build.0 = Release|x64
64+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.ReleaseStatic|Win32.ActiveCfg = ReleaseStatic|Win32
65+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.ReleaseStatic|Win32.Build.0 = ReleaseStatic|Win32
66+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.ReleaseStatic|x64.ActiveCfg = ReleaseStatic|x64
67+
{1704EA01-6B21-4362-9F1F-44D25CF2E0D7}.ReleaseStatic|x64.Build.0 = ReleaseStatic|x64
68+
EndGlobalSection
69+
GlobalSection(SolutionProperties) = preSolution
70+
HideSolutionNode = FALSE
71+
EndGlobalSection
72+
EndGlobal

0 commit comments

Comments
 (0)