Skip to content

Commit 390bf9a

Browse files
author
Jinzhi Chen
committed
rls src
1 parent 09db5a6 commit 390bf9a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+5661
-1
lines changed

DolphinDBExcel.sln

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.8.34330.188
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DolphinDBExcel", "DolphinDBExcel\DolphinDBExcel.csproj", "{685A38CC-7089-4C4F-AEC6-CF96C0762145}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
13+
Release|Any CPU = Release|Any CPU
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{685A38CC-7089-4C4F-AEC6-CF96C0762145}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{685A38CC-7089-4C4F-AEC6-CF96C0762145}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{685A38CC-7089-4C4F-AEC6-CF96C0762145}.Debug|x64.ActiveCfg = Debug|x64
21+
{685A38CC-7089-4C4F-AEC6-CF96C0762145}.Debug|x64.Build.0 = Debug|x64
22+
{685A38CC-7089-4C4F-AEC6-CF96C0762145}.Debug|x86.ActiveCfg = Debug|x86
23+
{685A38CC-7089-4C4F-AEC6-CF96C0762145}.Debug|x86.Build.0 = Debug|x86
24+
{685A38CC-7089-4C4F-AEC6-CF96C0762145}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{685A38CC-7089-4C4F-AEC6-CF96C0762145}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{685A38CC-7089-4C4F-AEC6-CF96C0762145}.Release|x64.ActiveCfg = Release|x64
27+
{685A38CC-7089-4C4F-AEC6-CF96C0762145}.Release|x64.Build.0 = Release|x64
28+
{685A38CC-7089-4C4F-AEC6-CF96C0762145}.Release|x86.ActiveCfg = Release|x86
29+
{685A38CC-7089-4C4F-AEC6-CF96C0762145}.Release|x86.Build.0 = Release|x86
30+
EndGlobalSection
31+
GlobalSection(SolutionProperties) = preSolution
32+
HideSolutionNode = FALSE
33+
EndGlobalSection
34+
GlobalSection(ExtensibilityGlobals) = postSolution
35+
SolutionGuid = {D3A2BC0F-547D-4176-B3C6-60D99516621D}
36+
EndGlobalSection
37+
EndGlobal
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<DnaLibrary Name="DolphinDBExcel Add-In" RuntimeVersion="v4.0" xmlns="http://schemas.excel-dna.net/addin/2018/05/dnalibrary">
3+
<Reference Path="dolphindb_csharpapi.dll" Pack="true" />
4+
<ExternalLibrary Path="DolphinDBExcel.dll" ExplicitExports="false" LoadFromBytes="true" Pack="true" IncludePdb="false" ExplicitRegistration='true'/>
5+
<ExternalLibrary Path="ExcelDna.Registration.dll" ExplicitExports="true" LoadFromBytes="true" Pack="true" IncludePdb="false" ExplicitRegistration='true'/>
6+
7+
<!--
8+
The RuntimeVersion attribute above allows two settings:
9+
* RuntimeVersion="v4.0" - for .NET 4 and 4.5
10+
* RuntimeVersion="v2.0" - for .NET 2.0, 3.0 and 3.5
11+
12+
You can have IntelliSense (autocomplete) and validation for this file.
13+
See https://github.com/Excel-DNA/ExcelDna/tree/master/Distribution/XmlSchemas/
14+
15+
Additional referenced assemblies can be specified by adding 'Reference' tags.
16+
These libraries will not be examined and registered with Excel as add-in libraries,
17+
but will be packed into the -packed.xll file and loaded at runtime as needed.
18+
For example:
19+
20+
<Reference Path="Another.Library.dll" Pack="true" />
21+
22+
Excel-DNA also allows the XML for ribbon UI extensions to be specified in the .dna file.
23+
See the main Excel-DNA site at http://excel-dna.net for downloads of the full distribution.
24+
-->
25+
</DnaLibrary>
Lines changed: 232 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,232 @@
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>{685A38CC-7089-4C4F-AEC6-CF96C0762145}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>DolphinDBForExcel</RootNamespace>
11+
<AssemblyName>DolphinDBExcel</AssemblyName>
12+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<Deterministic>true</Deterministic>
15+
<NuGetPackageImportStamp>
16+
</NuGetPackageImportStamp>
17+
<TargetFrameworkProfile />
18+
</PropertyGroup>
19+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20+
<DebugSymbols>true</DebugSymbols>
21+
<DebugType>full</DebugType>
22+
<Optimize>false</Optimize>
23+
<OutputPath>bin\Debug\</OutputPath>
24+
<DefineConstants>DEBUG;TRACE</DefineConstants>
25+
<ErrorReport>prompt</ErrorReport>
26+
<WarningLevel>4</WarningLevel>
27+
<Prefer32Bit>false</Prefer32Bit>
28+
</PropertyGroup>
29+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30+
<DebugType>pdbonly</DebugType>
31+
<Optimize>true</Optimize>
32+
<OutputPath>bin\Release\</OutputPath>
33+
<DefineConstants>TRACE</DefineConstants>
34+
<ErrorReport>prompt</ErrorReport>
35+
<WarningLevel>4</WarningLevel>
36+
<Prefer32Bit>false</Prefer32Bit>
37+
</PropertyGroup>
38+
<PropertyGroup>
39+
<SignAssembly>false</SignAssembly>
40+
</PropertyGroup>
41+
<PropertyGroup>
42+
<DelaySign>false</DelaySign>
43+
</PropertyGroup>
44+
<PropertyGroup>
45+
<AssemblyOriginatorKeyFile>
46+
</AssemblyOriginatorKeyFile>
47+
</PropertyGroup>
48+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
49+
<DebugSymbols>true</DebugSymbols>
50+
<OutputPath>bin\x64\Debug\</OutputPath>
51+
<DefineConstants>DEBUG;TRACE</DefineConstants>
52+
<DebugType>full</DebugType>
53+
<PlatformTarget>x64</PlatformTarget>
54+
<LangVersion>7.3</LangVersion>
55+
<ErrorReport>prompt</ErrorReport>
56+
</PropertyGroup>
57+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
58+
<OutputPath>bin\x64\Release\</OutputPath>
59+
<DefineConstants>TRACE</DefineConstants>
60+
<Optimize>true</Optimize>
61+
<DebugType>pdbonly</DebugType>
62+
<PlatformTarget>x64</PlatformTarget>
63+
<LangVersion>7.3</LangVersion>
64+
<ErrorReport>prompt</ErrorReport>
65+
</PropertyGroup>
66+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
67+
<DebugSymbols>true</DebugSymbols>
68+
<OutputPath>bin\x86\Debug\</OutputPath>
69+
<DefineConstants>DEBUG;TRACE</DefineConstants>
70+
<DebugType>full</DebugType>
71+
<PlatformTarget>x86</PlatformTarget>
72+
<LangVersion>7.3</LangVersion>
73+
<ErrorReport>prompt</ErrorReport>
74+
</PropertyGroup>
75+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
76+
<OutputPath>bin\x86\Release\</OutputPath>
77+
<DefineConstants>TRACE</DefineConstants>
78+
<Optimize>true</Optimize>
79+
<DebugType>pdbonly</DebugType>
80+
<PlatformTarget>x86</PlatformTarget>
81+
<LangVersion>7.3</LangVersion>
82+
<ErrorReport>prompt</ErrorReport>
83+
</PropertyGroup>
84+
<ItemGroup>
85+
<Reference Include="dolphindb_csharpapi">
86+
<HintPath>..\dolphindb_csharpapi.dll</HintPath>
87+
</Reference>
88+
<Reference Include="ExcelDna.Integration, Version=1.1.0.0, Culture=neutral, PublicKeyToken=f225e9659857edbe, processorArchitecture=MSIL">
89+
<HintPath>..\packages\ExcelDna.Integration.1.1.0\lib\ExcelDna.Integration.dll</HintPath>
90+
</Reference>
91+
<Reference Include="ExcelDna.Registration, Version=1.1.0.0, Culture=neutral, PublicKeyToken=f225e9659857edbe, processorArchitecture=MSIL">
92+
<HintPath>..\packages\ExcelDna.Registration.1.1.0\lib\net40\ExcelDna.Registration.dll</HintPath>
93+
</Reference>
94+
<Reference Include="Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
95+
<EmbedInteropTypes>True</EmbedInteropTypes>
96+
</Reference>
97+
<Reference Include="Microsoft.Office.Tools.Excel, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
98+
<EmbedInteropTypes>True</EmbedInteropTypes>
99+
</Reference>
100+
<Reference Include="PresentationCore" />
101+
<Reference Include="PresentationFramework" />
102+
<Reference Include="PresentationFramework.Aero" />
103+
<Reference Include="System" />
104+
<Reference Include="System.Core" />
105+
<Reference Include="System.Drawing" />
106+
<Reference Include="System.Windows" />
107+
<Reference Include="System.Windows.Controls.Ribbon" />
108+
<Reference Include="System.Windows.Forms" />
109+
<Reference Include="System.Windows.Forms.DataVisualization" />
110+
<Reference Include="System.Windows.Forms.DataVisualization.Design" />
111+
<Reference Include="System.Xaml" />
112+
<Reference Include="System.Xml.Linq" />
113+
<Reference Include="System.Data.DataSetExtensions" />
114+
<Reference Include="Microsoft.CSharp" />
115+
<Reference Include="System.Data" />
116+
<Reference Include="System.Xml" />
117+
<Reference Include="WindowsBase" />
118+
<Reference Include="WindowsFormsIntegration" />
119+
</ItemGroup>
120+
<ItemGroup>
121+
<Compile Include="Forms\ScriptEditorConfiguration.cs">
122+
<SubType>Form</SubType>
123+
</Compile>
124+
<Compile Include="Forms\ScriptEditorConfiguration.designer.cs">
125+
<DependentUpon>ScriptEditorConfiguration.cs</DependentUpon>
126+
</Compile>
127+
<Compile Include="Resource.Designer.cs">
128+
<AutoGen>True</AutoGen>
129+
<DesignTime>True</DesignTime>
130+
<DependentUpon>Resource.resx</DependentUpon>
131+
</Compile>
132+
<Compile Include="WPFControls\DDBScriptEditorExecTask.cs" />
133+
<Compile Include="WPFControls\DDBScriptEditorObjectView.cs" />
134+
<Compile Include="WPFControls\ScriptEditorConfiguration.xaml.cs">
135+
<DependentUpon>ScriptEditorConfiguration.xaml</DependentUpon>
136+
</Compile>
137+
<EmbeddedResource Include="Forms\EditServer.resx">
138+
<DependentUpon>EditServer.cs</DependentUpon>
139+
</EmbeddedResource>
140+
<EmbeddedResource Include="Forms\ScriptEditor.resx">
141+
<DependentUpon>ScriptEditor.cs</DependentUpon>
142+
</EmbeddedResource>
143+
<EmbeddedResource Include="Forms\ScriptEditorConfiguration.resx">
144+
<DependentUpon>ScriptEditorConfiguration.cs</DependentUpon>
145+
</EmbeddedResource>
146+
<EmbeddedResource Include="Resource.resx">
147+
<Generator>ResXFileCodeGenerator</Generator>
148+
<LastGenOutput>Resource.Designer.cs</LastGenOutput>
149+
</EmbeddedResource>
150+
<Compile Include="Forms\EditServer.cs">
151+
<SubType>Form</SubType>
152+
</Compile>
153+
<Compile Include="Forms\EditServer.Designer.cs">
154+
<DependentUpon>EditServer.cs</DependentUpon>
155+
</Compile>
156+
<Compile Include="Forms\ScriptEditor.cs">
157+
<SubType>Form</SubType>
158+
</Compile>
159+
<Compile Include="Forms\ScriptEditor.Designer.cs">
160+
<DependentUpon>ScriptEditor.cs</DependentUpon>
161+
</Compile>
162+
<Compile Include="Source\AddinBackend.cs" />
163+
<Compile Include="Source\AddinController.cs" />
164+
<Compile Include="Ribbon\DolphinDBExcelAddIn.cs" />
165+
<Compile Include="Forms\AddServer.cs">
166+
<SubType>Form</SubType>
167+
</Compile>
168+
<Compile Include="Forms\AddServer.Designer.cs">
169+
<DependentUpon>AddServer.cs</DependentUpon>
170+
</Compile>
171+
<Compile Include="Properties\AssemblyInfo.cs" />
172+
<Compile Include="Ribbon\AddinRibbon.cs" />
173+
<Compile Include="Source\ServerInfo.cs" />
174+
<Compile Include="Source\Singleton.cs" />
175+
<Compile Include="Source\Util.cs" />
176+
<Compile Include="WPFControls\DDBScriptEditor.xaml.cs">
177+
<DependentUpon>DDBScriptEditor.xaml</DependentUpon>
178+
</Compile>
179+
<Compile Include="WPFControls\DDBScriptEditorConfig.cs" />
180+
<Compile Include="WPFControls\Login.xaml.cs">
181+
<DependentUpon>Login.xaml</DependentUpon>
182+
</Compile>
183+
</ItemGroup>
184+
<ItemGroup>
185+
<None Include="packages.config" />
186+
<None Include="Properties\ExcelDna.Build.props" />
187+
<None Include="DolphinDBExcel-AddIn.dna" />
188+
</ItemGroup>
189+
<ItemGroup>
190+
<Page Include="WPFControls\DDBScriptEditor.xaml">
191+
<SubType>Designer</SubType>
192+
<Generator>MSBuild:Compile</Generator>
193+
</Page>
194+
<Page Include="WPFControls\Login.xaml">
195+
<SubType>Designer</SubType>
196+
<Generator>MSBuild:Compile</Generator>
197+
</Page>
198+
<Page Include="WPFControls\ScriptEditorConfiguration.xaml">
199+
<Generator>MSBuild:Compile</Generator>
200+
<SubType>Designer</SubType>
201+
</Page>
202+
<Page Include="WPFControls\SourceDictionary.xaml">
203+
<SubType>Designer</SubType>
204+
<Generator>MSBuild:Compile</Generator>
205+
</Page>
206+
</ItemGroup>
207+
<ItemGroup>
208+
<EmbeddedResource Include="Forms\AddServer.resx">
209+
<DependentUpon>AddServer.cs</DependentUpon>
210+
</EmbeddedResource>
211+
</ItemGroup>
212+
<ItemGroup>
213+
<None Include="Resources\ddb.jpg" />
214+
<None Include="Resources\document.bmp" />
215+
<None Include="Resources\document.png" />
216+
<None Include="Resources\folder.png" />
217+
<None Include="Resources\config40.png" />
218+
<Content Include="Resources\new_dolphindb.jpg" />
219+
<None Include="Resources\opened_folder.png" />
220+
<None Include="Resources\query40.png" />
221+
<None Include="Resources\server40.png" />
222+
<Content Include="Resources\serverSelect.xml" />
223+
</ItemGroup>
224+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
225+
<Import Project="..\packages\ExcelDna.AddIn.1.1.1\build\ExcelDna.AddIn.targets" Condition="Exists('..\packages\ExcelDna.AddIn.1.1.1\build\ExcelDna.AddIn.targets')" />
226+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
227+
<PropertyGroup>
228+
<ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
229+
</PropertyGroup>
230+
<Error Condition="!Exists('..\packages\ExcelDna.AddIn.1.1.1\build\ExcelDna.AddIn.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\ExcelDna.AddIn.1.1.1\build\ExcelDna.AddIn.targets'))" />
231+
</Target>
232+
</Project>

DolphinDBExcel/Forms/AddServer.Designer.cs

Lines changed: 76 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)