From 83220c46f74bf28ed149cbba0972843a2754a087 Mon Sep 17 00:00:00 2001 From: Pin Lin Date: Thu, 8 Mar 2018 22:38:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=89=E6=84=8F=E7=BE=A9=E7=9A=84=20Message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 322 ++++++++++++++++++++++ Git_Practice.sln | 28 ++ Git_Practice/AssemblyInfo.cpp | 38 +++ Git_Practice/Git_Practice.cpp | 10 + Git_Practice/Git_Practice.vcxproj | 162 +++++++++++ Git_Practice/Git_Practice.vcxproj.filters | 49 ++++ Git_Practice/ReadMe.txt | 35 +++ Git_Practice/app.ico | Bin 0 -> 41395 bytes Git_Practice/app.rc | Bin 0 -> 2356 bytes Git_Practice/resource.h | 3 + Git_Practice/stdafx.cpp | 7 + Git_Practice/stdafx.h | 8 + 12 files changed, 662 insertions(+) create mode 100644 .gitignore create mode 100755 Git_Practice.sln create mode 100755 Git_Practice/AssemblyInfo.cpp create mode 100755 Git_Practice/Git_Practice.cpp create mode 100755 Git_Practice/Git_Practice.vcxproj create mode 100755 Git_Practice/Git_Practice.vcxproj.filters create mode 100755 Git_Practice/ReadMe.txt create mode 100755 Git_Practice/app.ico create mode 100755 Git_Practice/app.rc create mode 100755 Git_Practice/resource.h create mode 100755 Git_Practice/stdafx.cpp create mode 100755 Git_Practice/stdafx.h diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c1c59ce --- /dev/null +++ b/.gitignore @@ -0,0 +1,322 @@ +# ---> VisualStudio +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ + +# Visual Studio 2015 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUNIT +*.VisualState.xml +TestResult.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ +**/Properties/launchSettings.json + +*_i.c +*_p.c +*_i.h +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode is a .NET coding add-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# TODO: Comment the next line if you want to checkin your web deploy settings +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +*.mdf +*.ldf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Typescript v1 declaration files +typings/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# JetBrains Rider +.idea/ +*.sln.iml + +# CodeRush +.cr/ + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs +# ---> C++ +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + diff --git a/Git_Practice.sln b/Git_Practice.sln new file mode 100755 index 0000000..fdb3d9f --- /dev/null +++ b/Git_Practice.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Git_Practice", "Git_Practice\Git_Practice.vcxproj", "{AABF13FD-DB25-43AD-8F86-C4F3AE883056}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AABF13FD-DB25-43AD-8F86-C4F3AE883056}.Debug|x64.ActiveCfg = Debug|x64 + {AABF13FD-DB25-43AD-8F86-C4F3AE883056}.Debug|x64.Build.0 = Debug|x64 + {AABF13FD-DB25-43AD-8F86-C4F3AE883056}.Debug|x86.ActiveCfg = Debug|Win32 + {AABF13FD-DB25-43AD-8F86-C4F3AE883056}.Debug|x86.Build.0 = Debug|Win32 + {AABF13FD-DB25-43AD-8F86-C4F3AE883056}.Release|x64.ActiveCfg = Release|x64 + {AABF13FD-DB25-43AD-8F86-C4F3AE883056}.Release|x64.Build.0 = Release|x64 + {AABF13FD-DB25-43AD-8F86-C4F3AE883056}.Release|x86.ActiveCfg = Release|Win32 + {AABF13FD-DB25-43AD-8F86-C4F3AE883056}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Git_Practice/AssemblyInfo.cpp b/Git_Practice/AssemblyInfo.cpp new file mode 100755 index 0000000..7cd5b87 --- /dev/null +++ b/Git_Practice/AssemblyInfo.cpp @@ -0,0 +1,38 @@ +#include "stdafx.h" + +using namespace System; +using namespace System::Reflection; +using namespace System::Runtime::CompilerServices; +using namespace System::Runtime::InteropServices; +using namespace System::Security::Permissions; + +// +// ե󪺤@TOѤUCݩʶC +// ܧoݩʪȧYiקե󪺬 +// TC +// +[assembly:AssemblyTitleAttribute(L"Git_Practice")]; +[assembly:AssemblyDescriptionAttribute(L"")]; +[assembly:AssemblyConfigurationAttribute(L"")]; +[assembly:AssemblyCompanyAttribute(L"")]; +[assembly:AssemblyProductAttribute(L"Git_Practice")]; +[assembly:AssemblyCopyrightAttribute(L"Copyright (c) 2018")]; +[assembly:AssemblyTrademarkAttribute(L"")]; +[assembly:AssemblyCultureAttribute(L"")]; + +// +// ե󪺪TѤUC|ӭȩҲզ: +// +// Dn +// n +// իؽs +// ׭qs +// +// ziHwҦȡA]iH̷ӥHU覡Aϥ '*' N׭qMիؽs +// ww]: + +[assembly:AssemblyVersionAttribute("1.0.*")]; + +[assembly:ComVisible(false)]; + +[assembly:CLSCompliantAttribute(true)]; \ No newline at end of file diff --git a/Git_Practice/Git_Practice.cpp b/Git_Practice/Git_Practice.cpp new file mode 100755 index 0000000..9b850e2 --- /dev/null +++ b/Git_Practice/Git_Practice.cpp @@ -0,0 +1,10 @@ +#include "stdafx.h" +#include +#include +using namespace System; +bool Guess(int number) +{ +} +int main(array^ args) +{ +} \ No newline at end of file diff --git a/Git_Practice/Git_Practice.vcxproj b/Git_Practice/Git_Practice.vcxproj new file mode 100755 index 0000000..3e76e49 --- /dev/null +++ b/Git_Practice/Git_Practice.vcxproj @@ -0,0 +1,162 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + {AABF13FD-DB25-43AD-8F86-C4F3AE883056} + v4.5.2 + ManagedCProj + Git_Practice + 8.1 + + + + Application + true + v140 + true + Unicode + + + Application + false + v140 + true + Unicode + + + Application + true + v140 + true + Unicode + + + Application + false + v140 + true + Unicode + + + + + + + + + + + + + + + + + + + + + true + + + true + + + false + + + false + + + + Level3 + Disabled + WIN32;_DEBUG;%(PreprocessorDefinitions) + Use + + + + Console + + + + + Level3 + Disabled + _DEBUG;%(PreprocessorDefinitions) + Use + + + + + + + + Level3 + WIN32;NDEBUG;%(PreprocessorDefinitions) + Use + + + + Console + + + + + Level3 + NDEBUG;%(PreprocessorDefinitions) + Use + + + + + + + + + + + + + + + + + + + + + + + + + Create + Create + Create + Create + + + + + + + + + \ No newline at end of file diff --git a/Git_Practice/Git_Practice.vcxproj.filters b/Git_Practice/Git_Practice.vcxproj.filters new file mode 100755 index 0000000..0c9fd13 --- /dev/null +++ b/Git_Practice/Git_Practice.vcxproj.filters @@ -0,0 +1,49 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + + + + 標頭檔 + + + 標頭檔 + + + + + 資源檔 + + + + + 原始程式檔 + + + 原始程式檔 + + + 原始程式檔 + + + + + 資源檔 + + + \ No newline at end of file diff --git a/Git_Practice/ReadMe.txt b/Git_Practice/ReadMe.txt new file mode 100755 index 0000000..5e2ba94 --- /dev/null +++ b/Git_Practice/ReadMe.txt @@ -0,0 +1,35 @@ +======================================================================== + APPLICATION : Git_Practice Project Overview +======================================================================== + +AppWizard has created this Git_Practice Application for you. + +This file contains a summary of what you will find in each of the files that +make up your Git_Practice application. + +Git_Practice.vcxproj + This is the main project file for VC++ projects generated using an Application Wizard. + It contains information about the version of Visual C++ that generated the file, and + information about the platforms, configurations, and project features selected with the + Application Wizard. + +Git_Practice.vcxproj.filters + This is the filters file for VC++ projects generated using an Application Wizard. + It contains information about the association between the files in your project + and the filters. This association is used in the IDE to show grouping of files with + similar extensions under a specific node (for e.g. ".cpp" files are associated with the + "Source Files" filter). + +Git_Practice.cpp + This is the main application source file. + +AssemblyInfo.cpp + Contains custom attributes for modifying assembly metadata. + +///////////////////////////////////////////////////////////////////////////// +Other notes: + +AppWizard uses "TODO:" to indicate parts of the source code you +should add to or customize. + +///////////////////////////////////////////////////////////////////////////// diff --git a/Git_Practice/app.ico b/Git_Practice/app.ico new file mode 100755 index 0000000000000000000000000000000000000000..789d7ccbb56ed92f1bb005054ec7e67257ddc37e GIT binary patch literal 41395 zcmeHQZA=_R7=DjCkZTKK8e`L%_DrfaQ35q-NU0yk2`Okwv@x+7+O*QNL}I~`Y8$Mc zweceoTVpWz1KLD?5Tj6HjAC->RZTH5(3+Y^qR}Q*QIUg61#Btj%&kM`7H)6nj+0&P zne4DLH}A~6^UO0d@9xgBL=JKjcMi&?At%w>EL>Qq#oKdt>C$N+(Rua|At$Lyk0H7#>diEi}F0wek;+HU7|b|XXU)xB+Bzp4Xf+HR-)G) zs@#~fX!#;mY)(aa>1JM9q{b|Es@mJmiXcbB=8Zn;=)3uM7IEz^*;GQ*b!7464yF^i z>&qW&Ajxqo~ z`o$M|S6|Ksp*!JynDLQBBox`-#bTKXNNLW6@ zgkx${f)e9J7HU zW>BoNwY0UbHnH&K*Qp-nz06Nvr^+meah=M<;eY@TNCN~S6LgB(nf&r-v~=^*=c0n&Ojh75tz+RnK5HVPvXohh+3)UAs(fW-b|Sp*ELAr(aAhg;CWNC zNg-csQaH8gOTI~A>mQ?;HLt$xf4z2e-!~6*cy1{Dt+(p06<@t|uzZicMMS~oQ0<3D z0x!1grj?D(wFOt)E;k)Ed9+Tg3NEWIIN#a3e!Td!+uXBZlaG*-5o1m2`SF#ewPVG* z`nqqrRCRT#YNfyP4BvY&bah{6bzfHSM$0IhOhc`lceYNT^Phg?sL%8lI?Ns?&V`*c zRdBocy$a9gPIeW|Bs$T^;GR!b6_sshE;@YY_gp~UPvB*7Kl6N3QpB;1NN_*^2mk>f zpdrBaQ2Eo`hgtjKfdM$cIKcK+E@&TbtfT$t|Aou}RsOSm)?qt)eP5#e#_0u9G5^8-Gva`rFPQ&e|Jj)XdOjO*ANC*YKRsXU%zfB@ z$=iQ=KG;33I{(?dy?Xu8el`17kDuM+=zsLT5eMwf?|AwfwVkKM%WwB|v>)T&hy!-# zcRc-#+K%yWJT~HChjicv4%m(ZY5o2e-U9>zKp=e)5dSYJ-Z^~{vUkhl^=tHZCp?kH z`q>9+;D7)SxP}0;>rdL;uu&S+@th^rgWXn^{AFF=V`xmP6 zLQm8mZTksaRPj`m7xe&t;4gDP@IsYOs`8>9xo#d7zpIv~Dlh6m{oudM0l^DZKB>x! zdgQug{)_ZfpHctp{7*IRqI}>VjlUj`bctK)VsIXmk>B_FKdTq@^7|D0wuFay@!ess zi$&(x%>|#u+@X3Fb@P0QtXIgd%~cBlKUMB5V03~ zKfw8;32NvtMvb6=blsJeK8-(4dHgQ&_)O{ck@hLU|!}FdJs8(zHR$>O=e5IluFL%x02bPZzW!7@ARw?SQ$IjJ3T9)Fq4?b6)yr? zCyC|)3g*0G&PIuKe4%nIXBrEgTlb}>%^s`utRthX#F@_~rkUdrjt2Ed(a&+nzIli% zuNGqsN)5Pw3$jK_Y=d?c?|-YVUDj6ptc%fJidJXoMYM+7pD&~1u4hG-FtEx|P)v~v zgfom93el4;@$}Y|NQ%ZJPfgoaWT)fn&0J}OtMUEP`;r;-#EGL=8vgUmUOXzVoJYCJ zrw)q-k>);4W^owxcb`W7>{C6I-Q;g!Hpw)7zrzD=E_dgf#L1uerkOxI)Lq^s|09pP s5&9dQMk%wx+xlImezi#M2#d>qfbZXZ9Up&Vt)HnIH(uXl_gf0iPrP^z`2YX_ literal 0 HcmV?d00001 diff --git a/Git_Practice/resource.h b/Git_Practice/resource.h new file mode 100755 index 0000000..d5ac7c4 --- /dev/null +++ b/Git_Practice/resource.h @@ -0,0 +1,3 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by app.rc diff --git a/Git_Practice/stdafx.cpp b/Git_Practice/stdafx.cpp new file mode 100755 index 0000000..8051764 --- /dev/null +++ b/Git_Practice/stdafx.cpp @@ -0,0 +1,7 @@ +// stdafx.cpp : ȥ]tз Include ɪl{ +// Git_Practice.pch |sĶY +// stdafx.obj |]tsĶT + +#include "stdafx.h" + + diff --git a/Git_Practice/stdafx.h b/Git_Practice/stdafx.h new file mode 100755 index 0000000..9e90f05 --- /dev/null +++ b/Git_Practice/stdafx.h @@ -0,0 +1,8 @@ +// stdafx.h : ibYɤ]tзǪt Include ɡA +// άOg`ϥΫoܤܧ +// MױM Include ɮ +// + +#pragma once + +// TODO: bѦұz{һݭnLY