-
Notifications
You must be signed in to change notification settings - Fork 4
/
Databasic.vbproj
224 lines (222 loc) · 11 KB
/
Databasic.vbproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{063224AB-BC4C-49EB-838F-7FB115BD496C}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Databasic</RootNamespace>
<AssemblyName>Databasic</AssemblyName>
<FileAlignment>512</FileAlignment>
<MyType>Windows</MyType>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>bin\Debug\</OutputPath>
<DocumentationFile>Databasic.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<DefineDebug>false</DefineDebug>
<DefineTrace>true</DefineTrace>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DocumentationFile>Databasic.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
<PropertyGroup>
<OptionExplicit>Off</OptionExplicit>
</PropertyGroup>
<PropertyGroup>
<OptionCompare>Binary</OptionCompare>
</PropertyGroup>
<PropertyGroup>
<OptionStrict>Off</OptionStrict>
</PropertyGroup>
<PropertyGroup>
<OptionInfer>On</OptionInfer>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>Tom Flidr - .NET.pfx</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Extensions" />
</ItemGroup>
<ItemGroup>
<Import Include="Microsoft.VisualBasic" />
<Import Include="System" />
<Import Include="System.Collections" />
<Import Include="System.Collections.Generic" />
<Import Include="System.Data" />
<Import Include="System.Diagnostics" />
<Import Include="System.Linq" />
<Import Include="System.Xml.Linq" />
<Import Include="System.Threading.Tasks" />
</ItemGroup>
<ItemGroup>
<Compile Include="ActiveRecord\Entity\Columns\ColumnsExcept.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseGetters\GetById.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseGetters\GetByKey.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseGetters\GetCount.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseGetters\GetDictionary.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseGetters\GetList.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseGetters\Init.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\Privates.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\ToDictionaryTyped.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\ToDictionary.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\ToInstanceTyped.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\ToJsonDictionary.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\ToJsonInstance.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\ToJsonInstanceTyped.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\ToJsonList.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\ToJsonListTyped.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\ToJsonDictionaryTyped.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\ToListTyped.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\ToList.vb" />
<Compile Include="ActiveRecord\Entity\DatabaseReader\ToInstance.vb" />
<Compile Include="ActiveRecord\Entity\InstanceGettersSetters\Getters.vb" />
<Compile Include="ActiveRecord\Entity\InstanceGettersSetters\Indexer.vb" />
<Compile Include="ActiveRecord\Entity\Manipulations\Delete.vb" />
<Compile Include="ActiveRecord\Entity\Manipulations\Save.vb" />
<Compile Include="ActiveRecord\Entity\Table.vb" />
<Compile Include="ActiveRecord\Entity\Columns\Columns.vb" />
<Compile Include="ActiveRecord\Resources\Columns\ColumnsExcept.vb" />
<Compile Include="ActiveRecord\Resources\Columns\Columns.vb" />
<Compile Include="ActiveRecord\Resources\Columns\KeyColumns.vb" />
<Compile Include="Attributes\IdColumn.vb" />
<Compile Include="Attributes\UseEnumUnderlyingValue.vb" />
<Compile Include="Attributes\Format.vb" />
<Compile Include="Attributes\AutoIncrement.vb" />
<Compile Include="Attributes\Trim.vb" />
<Compile Include="Connection\Register.vb" />
<Compile Include="Misc\Delegates.vb" />
<Compile Include="Misc\Enums.vb" />
<Compile Include="MetaDescriptor.vb" />
<Compile Include="Misc\Errors.vb" />
<Compile Include="Misc\Tools.vb" />
<Compile Include="Object.vb" />
<Compile Include="ProviderResource\Columns.vb" />
<Compile Include="ActiveRecord\Resources\Table.vb" />
<Compile Include="Attributes\Column.vb" />
<Compile Include="Attributes\Connection.vb" />
<Compile Include="Attributes\PrimaryKey.vb" />
<Compile Include="Attributes\Table.vb" />
<Compile Include="Attributes\UniqueKey.vb" />
<Compile Include="Connection\BeginTransaction.vb" />
<Compile Include="Connection\Opening.vb" />
<Compile Include="Misc\Events.vb" />
<Compile Include="Connection\Closing.vb" />
<Compile Include="ProviderResource\DatabaseGetters.vb" />
<Compile Include="Connection.vb" />
<Compile Include="Misc\Structs.vb" />
<Compile Include="ProviderResource\Manipulations\Save.vb" />
<Compile Include="ProviderResource\Manipulations\Insert.vb" />
<Compile Include="ProviderResource\Manipulations\Delete.vb" />
<Compile Include="ProviderResource\Manipulations\Update.vb" />
<Compile Include="Statement\FetchAll.vb" />
<Compile Include="Statement\FetchOne.vb" />
<Compile Include="Statement\Prepare.vb" />
<Compile Include="Statement\Exec.vb" />
<Compile Include="Statement\Reading\ToDictionary.vb" />
<Compile Include="Statement\Reading\ToDictionaryTyped.vb" />
<Compile Include="Statement\Reading\ToInstanceTyped.vb" />
<Compile Include="Statement\Reading\ToInstance.vb" />
<Compile Include="Statement\Reading\ToJsonStream.vb" />
<Compile Include="Statement\Reading\ToJsonString.vb" />
<Compile Include="Statement\Reading\ToJsonStringTyped.vb" />
<Compile Include="Statement\Reading\ToJsonStreamTyped.vb" />
<Compile Include="Statement\Reading\ToListTyped.vb" />
<Compile Include="Statement\Reading\ToList.vb" />
<Compile Include="Transaction.vb" />
<Compile Include="Connection\StaticInit.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="My Project\Application.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Application.myapp</DependentUpon>
</Compile>
<Compile Include="My Project\Resources.Designer.vb">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="My Project\Settings.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<Compile Include="ActiveRecord\Resources\InstanceGetter.vb" />
<Compile Include="Statement.vb" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="My Project\Resources.resx">
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
<CustomToolNamespace>My.Resources</CustomToolNamespace>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="Databasic.nuspec" />
<None Include="My Project\Application.myapp">
<Generator>MyApplicationCodeGenerator</Generator>
<LastGenOutput>Application.Designer.vb</LastGenOutput>
</None>
<None Include="My Project\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<CustomToolNamespace>My</CustomToolNamespace>
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
</None>
<None Include="packages.config" />
<None Include="Tom Flidr - .NET.pfx" />
<None Include="_CreateNewNuGetPackage\Config.ps1" />
<None Include="_CreateNewNuGetPackage\DoNotModify\CreateNuGetPackage.ps1" />
<None Include="_CreateNewNuGetPackage\DoNotModify\New-NuGetPackage.ps1" />
<None Include="_CreateNewNuGetPackage\DoNotModify\UploadNuGetPackage.ps1" />
<None Include="_CreateNewNuGetPackage\RunMeToUploadNuGetPackage.cmd" />
</ItemGroup>
<ItemGroup>
<None Include="_CreateNewNuGetPackage\DoNotModify\NuGet.exe" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
<PropertyGroup>
<PostBuildEvent>@if $(ConfigurationName) EQU Release (
REM Create a NuGet package for this project and place the .nupkg file in the project's output directory.
REM If you see this in Visual Studio's Error List window, check the Output window's Build tab for the actual error.
ECHO Creating NuGet package in Post-Build event...
PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& '$(ProjectDir)_CreateNewNuGetPackage\DoNotModify\CreateNuGetPackage.ps1' -ProjectFilePath '$(ProjectPath)' -OutputDirectory '$(TargetDir)' -BuildConfiguration '$(ConfigurationName)' -BuildPlatform '$(PlatformName)'"
@cd ../../../Databasic.BuildCommands
@cscript.exe PostBuild.wsf "$(ProjectDir)bin\Release" "$(ProjectName)"
)</PostBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PreBuildEvent>@if $(ConfigurationName) EQU Release (
@set wd=%25cd%25
@cd ../../../Databasic.BuildCommands
@cscript.exe ./PreBuild.wsf
@cd %25wd%25
)</PreBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>