Skip to content

Commit a4728d7

Browse files
committed
first commit
0 parents  commit a4728d7

26 files changed

Lines changed: 1650 additions & 0 deletions

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.7.2" />
5+
</startup>
6+
</configuration>

FB3EmbedDotNetExample.csproj

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
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>{1B2360E6-4576-4911-8B44-64D4FD2C0AC9}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<RootNamespace>FB3EmbedDotNetExample</RootNamespace>
10+
<AssemblyName>FB3EmbedDotNetExample</AssemblyName>
11+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<PlatformTarget>x64</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.Core" />
38+
<Reference Include="System.Xml.Linq" />
39+
<Reference Include="System.Data.DataSetExtensions" />
40+
<Reference Include="Microsoft.CSharp" />
41+
<Reference Include="System.Data" />
42+
<Reference Include="System.Net.Http" />
43+
<Reference Include="System.Xml" />
44+
</ItemGroup>
45+
<ItemGroup>
46+
<Compile Include="Program.cs" />
47+
<Compile Include="Properties\AssemblyInfo.cs" />
48+
</ItemGroup>
49+
<ItemGroup>
50+
<None Include="App.config" />
51+
<None Include="Firebird-3.0.4.33054-x64-embedded\firebird.conf">
52+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
53+
</None>
54+
<None Include="Firebird-3.0.4.33054-x64-embedded\firebird.msg">
55+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
56+
</None>
57+
<None Include="Firebird-3.0.4.33054-x64-embedded\help\help.fdb">
58+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
59+
</None>
60+
<None Include="Firebird-3.0.4.33054-x64-embedded\icudt52l.dat">
61+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
62+
</None>
63+
<None Include="Firebird-3.0.4.33054-x64-embedded\intl\fbintl.conf">
64+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
65+
</None>
66+
<None Include="Firebird-3.0.4.33054-x64-embedded\plugins\udr_engine.conf">
67+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
68+
</None>
69+
</ItemGroup>
70+
<ItemGroup>
71+
<PackageReference Include="FirebirdSql.Data.FirebirdClient">
72+
<Version>7.1.1</Version>
73+
</PackageReference>
74+
</ItemGroup>
75+
<ItemGroup>
76+
<Content Include="Firebird-3.0.4.33054-x64-embedded\fbclient.dll">
77+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
78+
</Content>
79+
<Content Include="Firebird-3.0.4.33054-x64-embedded\ib_util.dll">
80+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
81+
</Content>
82+
<Content Include="Firebird-3.0.4.33054-x64-embedded\icudt52.dll">
83+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
84+
</Content>
85+
<Content Include="Firebird-3.0.4.33054-x64-embedded\icuin52.dll">
86+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
87+
</Content>
88+
<Content Include="Firebird-3.0.4.33054-x64-embedded\icuuc52.dll">
89+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
90+
</Content>
91+
<Content Include="Firebird-3.0.4.33054-x64-embedded\intl\fbintl.dll">
92+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
93+
</Content>
94+
<Content Include="Firebird-3.0.4.33054-x64-embedded\msvcp100.dll">
95+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
96+
</Content>
97+
<Content Include="Firebird-3.0.4.33054-x64-embedded\msvcr100.dll">
98+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
99+
</Content>
100+
<Content Include="Firebird-3.0.4.33054-x64-embedded\plugins\engine12.dll">
101+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
102+
</Content>
103+
<Content Include="Firebird-3.0.4.33054-x64-embedded\plugins\fbtrace.dll">
104+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
105+
</Content>
106+
<Content Include="Firebird-3.0.4.33054-x64-embedded\plugins\legacy_auth.dll">
107+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
108+
</Content>
109+
<Content Include="Firebird-3.0.4.33054-x64-embedded\plugins\legacy_usermanager.dll">
110+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
111+
</Content>
112+
<Content Include="Firebird-3.0.4.33054-x64-embedded\plugins\srp.dll">
113+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
114+
</Content>
115+
<Content Include="Firebird-3.0.4.33054-x64-embedded\plugins\udr_engine.dll">
116+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
117+
</Content>
118+
<Content Include="Firebird-3.0.4.33054-x64-embedded\zlib1.dll">
119+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
120+
</Content>
121+
</ItemGroup>
122+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
123+
</Project>

FB3EmbedDotNetExample.sln

Lines changed: 25 additions & 0 deletions
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.29403.142
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FB3EmbedDotNetExample", "FB3EmbedDotNetExample.csproj", "{1B2360E6-4576-4911-8B44-64D4FD2C0AC9}"
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+
{1B2360E6-4576-4911-8B44-64D4FD2C0AC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{1B2360E6-4576-4911-8B44-64D4FD2C0AC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{1B2360E6-4576-4911-8B44-64D4FD2C0AC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{1B2360E6-4576-4911-8B44-64D4FD2C0AC9}.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 = {FE904C15-CA6E-426C-A50B-CC26EDE53B83}
24+
EndGlobalSection
25+
EndGlobal
1.73 MB
Binary file not shown.

0 commit comments

Comments
 (0)