Skip to content

Commit 37988f8

Browse files
committed
Initial code
1 parent fe06ccc commit 37988f8

12 files changed

+4525
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.vs/
2+
obj/
3+
bin/**/*
4+
*.user
5+
!bin/Release
6+
!bin/Release/ADODB.NET.dll

ADODB.NET.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30621.155
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ADODB.NET", "ADODB.NET.vbproj", "{A849D234-018F-40D7-8C44-26CE7EBE9A06}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{A849D234-018F-40D7-8C44-26CE7EBE9A06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{A849D234-018F-40D7-8C44-26CE7EBE9A06}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{A849D234-018F-40D7-8C44-26CE7EBE9A06}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{A849D234-018F-40D7-8C44-26CE7EBE9A06}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {D933F394-72CA-468F-8E3B-1A9C4E36663B}
24+
EndGlobalSection
25+
EndGlobal

ADODB.NET.vbproj

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" 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>{A849D234-018F-40D7-8C44-26CE7EBE9A06}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<RootNamespace></RootNamespace>
10+
<AssemblyName>ADODB.NET</AssemblyName>
11+
<FileAlignment>512</FileAlignment>
12+
<MyType>Windows</MyType>
13+
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
14+
<Deterministic>true</Deterministic>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<DebugSymbols>true</DebugSymbols>
18+
<DebugType>full</DebugType>
19+
<DefineDebug>true</DefineDebug>
20+
<DefineTrace>true</DefineTrace>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DocumentationFile>ADODB.NET.xml</DocumentationFile>
23+
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26+
<DebugType>pdbonly</DebugType>
27+
<DefineDebug>false</DefineDebug>
28+
<DefineTrace>true</DefineTrace>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DocumentationFile>ADODB.NET.xml</DocumentationFile>
32+
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
33+
</PropertyGroup>
34+
<PropertyGroup>
35+
<OptionExplicit>On</OptionExplicit>
36+
</PropertyGroup>
37+
<PropertyGroup>
38+
<OptionCompare>Binary</OptionCompare>
39+
</PropertyGroup>
40+
<PropertyGroup>
41+
<OptionStrict>Off</OptionStrict>
42+
</PropertyGroup>
43+
<PropertyGroup>
44+
<OptionInfer>On</OptionInfer>
45+
</PropertyGroup>
46+
<ItemGroup>
47+
<Reference Include="System" />
48+
<Reference Include="System.Data" />
49+
<Reference Include="System.Xml" />
50+
<Reference Include="System.Core" />
51+
<Reference Include="System.Xml.Linq" />
52+
<Reference Include="System.Data.DataSetExtensions" />
53+
<Reference Include="System.Net.Http" />
54+
</ItemGroup>
55+
<ItemGroup>
56+
<Import Include="Microsoft.VisualBasic" />
57+
<Import Include="System" />
58+
<Import Include="System.Collections" />
59+
<Import Include="System.Collections.Generic" />
60+
<Import Include="System.Data" />
61+
<Import Include="System.Diagnostics" />
62+
<Import Include="System.Linq" />
63+
<Import Include="System.Xml.Linq" />
64+
<Import Include="System.Threading.Tasks" />
65+
</ItemGroup>
66+
<ItemGroup>
67+
<Compile Include="ADODB.vb" />
68+
<Compile Include="My Project\AssemblyInfo.vb" />
69+
<Compile Include="My Project\Application.Designer.vb">
70+
<AutoGen>True</AutoGen>
71+
<DependentUpon>Application.myapp</DependentUpon>
72+
</Compile>
73+
<Compile Include="My Project\Resources.Designer.vb">
74+
<AutoGen>True</AutoGen>
75+
<DesignTime>True</DesignTime>
76+
<DependentUpon>Resources.resx</DependentUpon>
77+
</Compile>
78+
<Compile Include="My Project\Settings.Designer.vb">
79+
<AutoGen>True</AutoGen>
80+
<DependentUpon>Settings.settings</DependentUpon>
81+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
82+
</Compile>
83+
</ItemGroup>
84+
<ItemGroup>
85+
<EmbeddedResource Include="My Project\Resources.resx">
86+
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
87+
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
88+
<CustomToolNamespace>My.Resources</CustomToolNamespace>
89+
<SubType>Designer</SubType>
90+
</EmbeddedResource>
91+
</ItemGroup>
92+
<ItemGroup>
93+
<None Include="My Project\Application.myapp">
94+
<Generator>MyApplicationCodeGenerator</Generator>
95+
<LastGenOutput>Application.Designer.vb</LastGenOutput>
96+
</None>
97+
<None Include="My Project\Settings.settings">
98+
<Generator>SettingsSingleFileGenerator</Generator>
99+
<CustomToolNamespace>My</CustomToolNamespace>
100+
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
101+
</None>
102+
</ItemGroup>
103+
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
104+
</Project>

0 commit comments

Comments
 (0)