Skip to content

Commit fcff9f6

Browse files
committed
initalize
initalize
1 parent 5b32faa commit fcff9f6

17 files changed

+1030
-0
lines changed

CaptureHistory.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 2013
4+
VisualStudioVersion = 12.0.30110.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CaptureHistory", "CaptureHsitory\CaptureHistory.csproj", "{4AB0E476-BEE4-463D-AE59-395496177317}"
7+
EndProject
8+
Global
9+
GlobalSection(TeamFoundationVersionControl) = preSolution
10+
SccNumberOfProjects = 2
11+
SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
12+
SccTeamFoundationServer = https://ghatdev.visualstudio.com/defaultcollection
13+
SccLocalPath0 = .
14+
SccProjectUniqueName1 = CaptureHsitory\\CaptureHistory.csproj
15+
SccProjectName1 = CaptureHsitory
16+
SccLocalPath1 = CaptureHsitory
17+
EndGlobalSection
18+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
19+
Debug|Any CPU = Debug|Any CPU
20+
Release|Any CPU = Release|Any CPU
21+
EndGlobalSection
22+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
23+
{4AB0E476-BEE4-463D-AE59-395496177317}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{4AB0E476-BEE4-463D-AE59-395496177317}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{4AB0E476-BEE4-463D-AE59-395496177317}.Release|Any CPU.ActiveCfg = Release|Any CPU
26+
{4AB0E476-BEE4-463D-AE59-395496177317}.Release|Any CPU.Build.0 = Release|Any CPU
27+
EndGlobalSection
28+
GlobalSection(SolutionProperties) = preSolution
29+
HideSolutionNode = FALSE
30+
EndGlobalSection
31+
EndGlobal

CaptureHistory.vssscc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
""
2+
{
3+
"FILE_VERSION" = "9237"
4+
"ENLISTMENT_CHOICE" = "NEVER"
5+
"PROJECT_FILE_RELATIVE_PATH" = ""
6+
"NUMBER_OF_EXCLUDED_FILES" = "0"
7+
"ORIGINAL_PROJECT_FILE_PATH" = ""
8+
"NUMBER_OF_NESTED_PROJECTS" = "0"
9+
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT"
10+
}

CaptureHsitory/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
5+
</startup>
6+
</configuration>
Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{4AB0E476-BEE4-463D-AE59-395496177317}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>CaptureHsitory</RootNamespace>
11+
<AssemblyName>CaptureHsitory</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<SccProjectName>SAK</SccProjectName>
15+
<SccLocalPath>SAK</SccLocalPath>
16+
<SccAuxPath>SAK</SccAuxPath>
17+
<SccProvider>SAK</SccProvider>
18+
<IsWebBootstrapper>false</IsWebBootstrapper>
19+
<PublishUrl>D:\Projects\CaptureHsitory\</PublishUrl>
20+
<Install>true</Install>
21+
<InstallFrom>Disk</InstallFrom>
22+
<UpdateEnabled>false</UpdateEnabled>
23+
<UpdateMode>Foreground</UpdateMode>
24+
<UpdateInterval>7</UpdateInterval>
25+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
26+
<UpdatePeriodically>false</UpdatePeriodically>
27+
<UpdateRequired>false</UpdateRequired>
28+
<MapFileExtensions>true</MapFileExtensions>
29+
<ApplicationRevision>1</ApplicationRevision>
30+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
31+
<UseApplicationTrust>false</UseApplicationTrust>
32+
<PublishWizardCompleted>true</PublishWizardCompleted>
33+
<BootstrapperEnabled>true</BootstrapperEnabled>
34+
</PropertyGroup>
35+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
36+
<PlatformTarget>AnyCPU</PlatformTarget>
37+
<DebugSymbols>true</DebugSymbols>
38+
<DebugType>full</DebugType>
39+
<Optimize>false</Optimize>
40+
<OutputPath>bin\Debug\</OutputPath>
41+
<DefineConstants>DEBUG;TRACE</DefineConstants>
42+
<ErrorReport>prompt</ErrorReport>
43+
<WarningLevel>4</WarningLevel>
44+
</PropertyGroup>
45+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
46+
<PlatformTarget>AnyCPU</PlatformTarget>
47+
<DebugType>pdbonly</DebugType>
48+
<Optimize>true</Optimize>
49+
<OutputPath>bin\Release\</OutputPath>
50+
<DefineConstants>TRACE</DefineConstants>
51+
<ErrorReport>prompt</ErrorReport>
52+
<WarningLevel>4</WarningLevel>
53+
</PropertyGroup>
54+
<PropertyGroup>
55+
<ManifestCertificateThumbprint>F6BDB3194801D7E16963D584D87F8A22E3B0EED0</ManifestCertificateThumbprint>
56+
</PropertyGroup>
57+
<PropertyGroup>
58+
<ManifestKeyFile>CaptureHistory_TemporaryKey.pfx</ManifestKeyFile>
59+
</PropertyGroup>
60+
<PropertyGroup>
61+
<GenerateManifests>true</GenerateManifests>
62+
</PropertyGroup>
63+
<PropertyGroup>
64+
<SignManifests>true</SignManifests>
65+
</PropertyGroup>
66+
<ItemGroup>
67+
<Reference Include="System" />
68+
<Reference Include="System.Core" />
69+
<Reference Include="System.Xml.Linq" />
70+
<Reference Include="System.Data.DataSetExtensions" />
71+
<Reference Include="Microsoft.CSharp" />
72+
<Reference Include="System.Data" />
73+
<Reference Include="System.Deployment" />
74+
<Reference Include="System.Drawing" />
75+
<Reference Include="System.Windows.Forms" />
76+
<Reference Include="System.Xml" />
77+
</ItemGroup>
78+
<ItemGroup>
79+
<Compile Include="Form1.cs">
80+
<SubType>Form</SubType>
81+
</Compile>
82+
<Compile Include="Form1.Designer.cs">
83+
<DependentUpon>Form1.cs</DependentUpon>
84+
</Compile>
85+
<Compile Include="Form2.cs">
86+
<SubType>Form</SubType>
87+
</Compile>
88+
<Compile Include="Form2.Designer.cs">
89+
<DependentUpon>Form2.cs</DependentUpon>
90+
</Compile>
91+
<Compile Include="Program.cs" />
92+
<Compile Include="Properties\AssemblyInfo.cs" />
93+
<EmbeddedResource Include="Form1.resx">
94+
<DependentUpon>Form1.cs</DependentUpon>
95+
</EmbeddedResource>
96+
<EmbeddedResource Include="Form2.resx">
97+
<DependentUpon>Form2.cs</DependentUpon>
98+
</EmbeddedResource>
99+
<EmbeddedResource Include="Properties\Resources.resx">
100+
<Generator>ResXFileCodeGenerator</Generator>
101+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
102+
<SubType>Designer</SubType>
103+
</EmbeddedResource>
104+
<Compile Include="Properties\Resources.Designer.cs">
105+
<AutoGen>True</AutoGen>
106+
<DependentUpon>Resources.resx</DependentUpon>
107+
</Compile>
108+
<None Include="CaptureHistory_TemporaryKey.pfx" />
109+
<None Include="Properties\Settings.settings">
110+
<Generator>SettingsSingleFileGenerator</Generator>
111+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
112+
</None>
113+
<Compile Include="Properties\Settings.Designer.cs">
114+
<AutoGen>True</AutoGen>
115+
<DependentUpon>Settings.settings</DependentUpon>
116+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
117+
</Compile>
118+
</ItemGroup>
119+
<ItemGroup>
120+
<None Include="App.config" />
121+
</ItemGroup>
122+
<ItemGroup>
123+
<BootstrapperPackage Include=".NETFramework,Version=v4.5">
124+
<Visible>False</Visible>
125+
<ProductName>Microsoft .NET Framework 4.5%28x86 및 x64%29</ProductName>
126+
<Install>true</Install>
127+
</BootstrapperPackage>
128+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
129+
<Visible>False</Visible>
130+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
131+
<Install>false</Install>
132+
</BootstrapperPackage>
133+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
134+
<Visible>False</Visible>
135+
<ProductName>.NET Framework 3.5 SP1</ProductName>
136+
<Install>false</Install>
137+
</BootstrapperPackage>
138+
</ItemGroup>
139+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
140+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
141+
Other similar extension points exist, see Microsoft.Common.targets.
142+
<Target Name="BeforeBuild">
143+
</Target>
144+
<Target Name="AfterBuild">
145+
</Target>
146+
-->
147+
</Project>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
""
2+
{
3+
"FILE_VERSION" = "9237"
4+
"ENLISTMENT_CHOICE" = "NEVER"
5+
"PROJECT_FILE_RELATIVE_PATH" = ""
6+
"NUMBER_OF_EXCLUDED_FILES" = "0"
7+
"ORIGINAL_PROJECT_FILE_PATH" = ""
8+
"NUMBER_OF_NESTED_PROJECTS" = "0"
9+
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
10+
}

CaptureHsitory/Form1.Designer.cs

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

0 commit comments

Comments
 (0)