Skip to content

Commit de7e0ef

Browse files
committed
Add existing code of project HelpBrowser.
1 parent 42ddc4e commit de7e0ef

File tree

13 files changed

+1475
-1
lines changed

13 files changed

+1475
-1
lines changed

DosHelp.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ VisualStudioVersion = 12.0.30110.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QuickHelp", "QuickHelp\QuickHelp.csproj", "{C18C4ED1-E4B6-4DC3-B7CF-55053FEC165B}"
77
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelpBrowser", "HelpBrowser\HelpBrowser.csproj", "{00E978CD-7420-40EA-91A2-18E0F3CFF5C1}"
9+
EndProject
810
Global
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1012
Debug|Any CPU = Debug|Any CPU
@@ -15,6 +17,10 @@ Global
1517
{C18C4ED1-E4B6-4DC3-B7CF-55053FEC165B}.Debug|Any CPU.Build.0 = Debug|Any CPU
1618
{C18C4ED1-E4B6-4DC3-B7CF-55053FEC165B}.Release|Any CPU.ActiveCfg = Release|Any CPU
1719
{C18C4ED1-E4B6-4DC3-B7CF-55053FEC165B}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{00E978CD-7420-40EA-91A2-18E0F3CFF5C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{00E978CD-7420-40EA-91A2-18E0F3CFF5C1}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{00E978CD-7420-40EA-91A2-18E0F3CFF5C1}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{00E978CD-7420-40EA-91A2-18E0F3CFF5C1}.Release|Any CPU.Build.0 = Release|Any CPU
1824
EndGlobalSection
1925
GlobalSection(SolutionProperties) = preSolution
2026
HideSolutionNode = FALSE

HelpBrowser/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+
5+
<supportedRuntime version="v2.0.50727"/></startup>
6+
</configuration>

HelpBrowser/HelpBrowser.csproj

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
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>{00E978CD-7420-40EA-91A2-18E0F3CFF5C1}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>HelpBrowser</RootNamespace>
11+
<AssemblyName>HelpBrowser</AssemblyName>
12+
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<TargetFrameworkProfile />
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<PlatformTarget>AnyCPU</PlatformTarget>
18+
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<Optimize>false</Optimize>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>DEBUG;TRACE</DefineConstants>
23+
<ErrorReport>prompt</ErrorReport>
24+
<WarningLevel>4</WarningLevel>
25+
</PropertyGroup>
26+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27+
<PlatformTarget>AnyCPU</PlatformTarget>
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
</PropertyGroup>
35+
<ItemGroup>
36+
<Reference Include="System" />
37+
<Reference Include="System.Drawing" />
38+
<Reference Include="System.Windows.Forms" />
39+
</ItemGroup>
40+
<ItemGroup>
41+
<Compile Include="MainForm.cs">
42+
<SubType>Form</SubType>
43+
</Compile>
44+
<Compile Include="MainForm.Designer.cs">
45+
<DependentUpon>MainForm.cs</DependentUpon>
46+
</Compile>
47+
<Compile Include="Program.cs" />
48+
<Compile Include="Properties\AssemblyInfo.cs" />
49+
<EmbeddedResource Include="MainForm.resx">
50+
<DependentUpon>MainForm.cs</DependentUpon>
51+
</EmbeddedResource>
52+
<EmbeddedResource Include="Properties\Resources.resx">
53+
<Generator>ResXFileCodeGenerator</Generator>
54+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
55+
<SubType>Designer</SubType>
56+
</EmbeddedResource>
57+
<Compile Include="Properties\Resources.Designer.cs">
58+
<AutoGen>True</AutoGen>
59+
<DependentUpon>Resources.resx</DependentUpon>
60+
<DesignTime>True</DesignTime>
61+
</Compile>
62+
<None Include="Properties\Settings.settings">
63+
<Generator>SettingsSingleFileGenerator</Generator>
64+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
65+
</None>
66+
<Compile Include="Properties\Settings.Designer.cs">
67+
<AutoGen>True</AutoGen>
68+
<DependentUpon>Settings.settings</DependentUpon>
69+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
70+
</Compile>
71+
</ItemGroup>
72+
<ItemGroup>
73+
<None Include="App.config" />
74+
</ItemGroup>
75+
<ItemGroup>
76+
<ProjectReference Include="..\QuickHelp\QuickHelp.csproj">
77+
<Project>{c18c4ed1-e4b6-4dc3-b7cf-55053fec165b}</Project>
78+
<Name>QuickHelp</Name>
79+
</ProjectReference>
80+
</ItemGroup>
81+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
82+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
83+
Other similar extension points exist, see Microsoft.Common.targets.
84+
<Target Name="BeforeBuild">
85+
</Target>
86+
<Target Name="AfterBuild">
87+
</Target>
88+
-->
89+
</Project>

0 commit comments

Comments
 (0)