mirror of
https://bitbucket.org/anguist/ntpa
synced 2025-10-06 11:04:40 +00:00
Fixed MySql to version 6.9.8
This commit is contained in:
@ -1,32 +0,0 @@
|
||||
#!c:\python27\python.exe
|
||||
|
||||
import re
|
||||
import sys
|
||||
import os
|
||||
from datetime import date
|
||||
|
||||
year = str(date.today().year)
|
||||
error = False
|
||||
|
||||
#files = os.popen("git diff --name-only --diff-filter=ACMRTUXB").read().splitlines(True)
|
||||
files = os.popen("git status -uno --porcelain").read().splitlines(True)
|
||||
for file in files:
|
||||
status = file[0:2].strip()
|
||||
if status == 'R':
|
||||
continue
|
||||
filename = file[2:].strip()
|
||||
|
||||
with open(filename) as f:
|
||||
file_content = f.readlines()
|
||||
|
||||
for line in file_content:
|
||||
if line.find("Copyright") == -1:
|
||||
continue
|
||||
if line.find(year) == -1:
|
||||
print filename + ' does not have an updated copyright date'
|
||||
error = True
|
||||
|
||||
if error:
|
||||
sys.exit(1)
|
||||
|
||||
sys.exit(0)
|
@ -1,82 +0,0 @@
|
||||
#!c:\python27\python.exe
|
||||
|
||||
import re
|
||||
import sys
|
||||
import os
|
||||
|
||||
validext = { '.cs', '.c', '.cpp', '.h' }
|
||||
skipdir = { '.git', '.bzr', 'zlib', 'obj', 'bin', 'MySql.EMTrace', 'Samples' }
|
||||
skipfile = { '.Designer.cs' }
|
||||
num_to_skip = 2
|
||||
error = False
|
||||
|
||||
def process_file(file, banner):
|
||||
global error
|
||||
with open(file) as f:
|
||||
file_content = f.readlines()
|
||||
|
||||
if len(file_content) < len(banner):
|
||||
print file + " is not large enough"
|
||||
return;
|
||||
|
||||
# remove the # of lines the user told us to skip
|
||||
for x in range(0, num_to_skip):
|
||||
file_content.pop(0)
|
||||
|
||||
for line in range(0, len(banner)):
|
||||
if not banner[line].strip() == file_content[line].strip():
|
||||
print filename + ' does not match'
|
||||
error = True
|
||||
return
|
||||
|
||||
def should_skip_dir(dir):
|
||||
lower_dir = dir.lower()
|
||||
for dir_to_skip in skipdir:
|
||||
if lower_dir.find(dir_to_skip.lower()) > -1:
|
||||
return True
|
||||
return False
|
||||
|
||||
def should_skip_file(file):
|
||||
lower_file = file.lower()
|
||||
for file_to_skip in skipfile:
|
||||
if file_to_skip.lower() in lower_file:
|
||||
return True
|
||||
for ext in validext:
|
||||
if file.endswith(ext):
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
############################################################
|
||||
# main prog
|
||||
############################################################
|
||||
if len(sys.argv) < 2:
|
||||
print "Not enough arguments"
|
||||
sys.exit(1)
|
||||
license_file = sys.argv[1]
|
||||
if not os.path.isfile(license_file):
|
||||
print "License file does not exist"
|
||||
sys.exit(1)
|
||||
|
||||
if len(sys.argv) == 3:
|
||||
num_to_skip = int(sys.argv[2])
|
||||
|
||||
with open(sys.argv[1]) as f:
|
||||
banner_content = f.readlines()
|
||||
|
||||
for root, dirs, files in os.walk('.'):
|
||||
if should_skip_dir(root):
|
||||
continue
|
||||
for file in files:
|
||||
if should_skip_file(file):
|
||||
continue;
|
||||
filename = os.path.join(root, file)
|
||||
process_file(filename, banner_content)
|
||||
|
||||
if error:
|
||||
sys.exit(1)
|
||||
|
||||
sys.exit(0)
|
||||
|
||||
|
||||
|
@ -1,29 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to verify what is about to be committed.
|
||||
# Called by "git commit" with no arguments. The hook should
|
||||
# exit with non-zero status after issuing an appropriate message if
|
||||
# it wants to stop the commit.
|
||||
#
|
||||
# To enable this hook, rename this file to "pre-commit".
|
||||
#import sys
|
||||
#import subprocess
|
||||
|
||||
#subprocess.Popen("../../check_copyright.py", shell=True)
|
||||
ERROR=0
|
||||
if ! (.githooks/license_check.py Installer/gpl-banner.txt)
|
||||
then
|
||||
ERROR=1
|
||||
echo '********** license_check error **********'
|
||||
fi
|
||||
if ! (.githooks/check_copyright.py)
|
||||
then
|
||||
ERROR=1
|
||||
echo '********** check_copyright error **********'
|
||||
fi
|
||||
if [ $ERROR = 1 ]
|
||||
then
|
||||
echo '********** ERROR **********'
|
||||
exit 1
|
||||
fi
|
||||
exit 0
|
0
MySql/Documentation/CollectionFiles/FixRegTables.exe
Executable file → Normal file
0
MySql/Documentation/CollectionFiles/FixRegTables.exe
Executable file → Normal file
Binary file not shown.
178
MySql/Documentation/images.proj
Normal file
178
MySql/Documentation/images.proj
Normal file
@ -0,0 +1,178 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-add-connection.png">
|
||||
<ImageId>connector-net-visual-studio-add-connection</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-choose-data-source.png">
|
||||
<ImageId>connector-net-visual-studio-choose-data-source</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-add-connection-dialog.png">
|
||||
<ImageId>connector-net-visual-studio-add-connection-dialog</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-new-data-connection.png">
|
||||
<ImageId>connector-net-visual-studio-new-data-connection</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-editing-new-table.png">
|
||||
<ImageId>connector-net-visual-studio-editing-new-table</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-choose-table-name.png">
|
||||
<ImageId>connector-net-visual-studio-choose-table-name</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-newly-created-table.png">
|
||||
<ImageId>connector-net-visual-studio-newly-created-table</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-table-designer-menu-item.png">
|
||||
<ImageId>connector-net-visual-studio-table-desginer-menu-item</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-indexes-dialog.png">
|
||||
<ImageId>connector-net-visual-studio-indexes-dialog</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-foreign-key-relationships.png">
|
||||
<ImageId>connector-net-visual-studio-foreign-key-relationships</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-table-properties-menu.png">
|
||||
<ImageId>connector-net-visual-studio-table-properties-menu</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-selecting-table-properties.png">
|
||||
<ImageId>connector-net-visual-studio-selecting-table-properties</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-views-edit-sql.png">
|
||||
<ImageId>connector-net-visual-studio-views-edit-sql</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-views-sql-added.png">
|
||||
<ImageId>connector-net-visual-studio-views-sql-added</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-views-sql-saved.png">
|
||||
<ImageId>connector-net-visual-studio-views-sql-saved</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-stored-procedure-edit.png">
|
||||
<ImageId>connector-net-visual-studio-stored-procedure-edit</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-stored-procedure-saved.png">
|
||||
<ImageId>connector-net-visual-studio-stored-procedure-saved</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-website-config-tool.png">
|
||||
<ImageId>connector-net-website-config-tool</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-website-config-tool-membership.png">
|
||||
<ImageId>connector-net-website-config-tool-membership</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-website-config-tool-string-editor.png">
|
||||
<ImageId>connector-net-website-config-tool-string-editor</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-website-config-tool-options.png">
|
||||
<ImageId>connector-net-website-config-tool-options</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-website-config-tool-roles.png">
|
||||
<ImageId>connector-net-website-config-tool-roles</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-website-config-tool-profiles.png">
|
||||
<ImageId>connector-net-website-config-tool-profiles</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-website-config-tool-session-state.png">
|
||||
<ImageId>connector-net-website-config-tool-session-state</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-website-config-tool-tables.png">
|
||||
<ImageId>connector-net-website-config-tool-tables</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-sql-editor-new-file-dialog.png">
|
||||
<ImageId>connector-net-sql-editor-new-file-dialog</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-sql-editor-query.png">
|
||||
<ImageId>connector-net-sql-editor-query</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-ddl-properties.png">
|
||||
<ImageId>connector-net-ddl-t4-ef-properties</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-ddl-generate.png">
|
||||
<ImageId>connector-net-ddl-t4-ef-generate</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-tutorials-1.png">
|
||||
<ImageId>connector-net-tutorials-1</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-tutorials-authentication-type.png">
|
||||
<ImageId>connector-net-tutorials-authentication-type</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-tutorials-select-provider.png">
|
||||
<ImageId>connector-net-tutorials-select-provider</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-tutorials-tables.png">
|
||||
<ImageId>connector-net-tutorials-tables</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-tutorials-security-tab.png">
|
||||
<ImageId>connector-net-tutorials-security-tab</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-tutorials-create-user.png">
|
||||
<ImageId>connector-net-tutorials-create-user</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-tutorials-users-roles-tables.png">
|
||||
<ImageId>connector-net-tutorials-users-roles-tables</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-tutorials-asp-provider-profile-simple-app.png">
|
||||
<ImageId>connector-net-tutorials-asp-provider-profile-simple-app</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-add-entity-data-model.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-add-entity-data-model</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-entity-data-model-wizard-1.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-entity-data-model-wizard-1</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-entity-data-model-wizard-2.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-entity-data-model-wizard-2</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-entity-data-model-wizard-3.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-entity-data-model-wizard-3</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-entity-data-model-diagram.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-entity-data-model-diagram</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-data-source-configuration-wizard-1.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-data-source-configuration-wizard-1</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-data-source-configuration-wizard-2.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-data-source-configuration-wizard-2</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-data-source-configuration-wizard-3.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-data-source-configuration-wizard-3</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-data-sources.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-data-sources</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-data-form-design.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-data-form-design</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-form-add-code.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-form-add-code</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-app-running-1.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-app-running-1</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-save-enabled.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-save-enabled</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-form-add-code-save.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-form-add-code-save</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-tutorial-linq-1.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-tutorial-linq-1</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-tutorial-linq-2.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-tutorial-linq-2</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-tutorial-linq-3.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-tutorial-linq-3</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-tutorial-linq-4.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-tutorial-linq-4</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-tutorial-linq-5.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-tutorial-linq-5</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-tutorial-linq-6.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-tutorial-linq-6</ImageId>
|
||||
</Image>
|
||||
<Image Include="Users Guide\media\connector-net-visual-studio-entity-framework-tutorial-linq-7.png">
|
||||
<ImageId>connector-net-visual-studio-entity-framework-tutorial-linq-7</ImageId>
|
||||
</Image>
|
||||
</ItemGroup>
|
||||
</Project>
|
38
MySql/README
38
MySql/README
@ -1,4 +1,4 @@
|
||||
MySQL Connector/Net 6.x
|
||||
MySQL Connector/Net 6.9
|
||||
|
||||
This is a release of MySQL Connector/Net, Oracle's dual-
|
||||
license ADO.Net Driver for MySQL. For the avoidance of
|
||||
@ -8,38 +8,4 @@ MySQL Connector/Net is brought to you by Oracle.
|
||||
|
||||
Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
|
||||
License information can be found in the COPYING file.
|
||||
|
||||
MySQL FOSS License Exception
|
||||
We want free and open source software applications under
|
||||
certain licenses to be able to use the GPL-licensed MySQL
|
||||
Connector/NET (specified GPL-licensed MySQL client libraries)
|
||||
despite the fact that not all such FOSS licenses are
|
||||
compatible with version 2 of the GNU General Public License.
|
||||
Therefore there are special exceptions to the terms and
|
||||
conditions of the GPLv2 as applied to these client libraries,
|
||||
which are identified and described in more detail in the
|
||||
FOSS License Exception at
|
||||
<http://www.mysql.com/about/legal/licensing/foss-exception.html>
|
||||
|
||||
This distribution may include materials developed by third
|
||||
parties. For license and attribution notices for these
|
||||
materials, please refer to the documentation that accompanies
|
||||
this distribution (see the "Licenses for Third-Party Components"
|
||||
appendix) or view the online documentation at
|
||||
<http://dev.mysql.com/doc/>
|
||||
|
||||
The accompanying documentation currently exists in MSDN help
|
||||
format and is located in the 'doc' directory.
|
||||
|
||||
GPLv2 Disclaimer
|
||||
For the avoidance of doubt, except that if any license choice
|
||||
other than GPL or LGPL is available it will apply instead,
|
||||
Oracle elects to use only the General Public License version 2
|
||||
(GPLv2) at this time for any software where a choice of GPL
|
||||
license versions is made available with the language indicating
|
||||
that GPLv2 or any later version may be used, or where a choice
|
||||
of which version of the GPL is applied is otherwise unspecified.
|
||||
|
||||
This software is OSI Certified Open Source Software.
|
||||
OSI Certified is a certification mark of the Open Source Initiative.
|
||||
License information can be found in the COPYING file.
|
@ -2,13 +2,63 @@
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<Framework>4.0</Framework>
|
||||
<DefineConstants>NET_40_OR_GREATER</DefineConstants>
|
||||
<ReleaseVersion>0.6.1</ReleaseVersion>
|
||||
<Platform>AnyCPU</Platform>
|
||||
<!-- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> -->
|
||||
<TargetFrameworkProfile />
|
||||
<!--
|
||||
<Framework Condition=" '$(Framework)' == '' and '$(VisualStudioVersion)' == '10.0'">4.0</Framework>
|
||||
<Framework Condition=" '$(Framework)' == '' and '$(VisualStudioVersion)' == '11.0'">4.5</Framework>
|
||||
<Framework Condition=" '$(Framework)' == '' and '$(VisualStudioVersion)' == '12.0'">4.5.1</Framework>
|
||||
<Framework Condition=" '$(Framework)' == ''">2.0</Framework>
|
||||
<TargetFrameworkVersion Condition="'$(Framework)'!=''">v$(Framework)</TargetFrameworkVersion>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>-->
|
||||
</PropertyGroup>
|
||||
<Choose>
|
||||
<When Condition=" '$(Platform)' != 'AnyCPU'">
|
||||
<PropertyGroup>
|
||||
<Platform>AnyCPU</Platform>
|
||||
</PropertyGroup>
|
||||
</When>
|
||||
</Choose>
|
||||
<Choose>
|
||||
<When Condition=" '$(VisualStudioVersion)' == '12.0'">
|
||||
<PropertyGroup>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<Framework>4.5.1</Framework>
|
||||
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
||||
<DefineConstants>NET_40_OR_GREATER;NET_45_OR_GREATER;NET_451_OR_GREATER;</DefineConstants>
|
||||
</PropertyGroup>
|
||||
</When>
|
||||
<When Condition=" '$(VisualStudioVersion)' == '11.0'">
|
||||
<PropertyGroup>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<Framework>4.5</Framework>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<DefineConstants>NET_40_OR_GREATER;NET_45_OR_GREATER</DefineConstants>
|
||||
</PropertyGroup>
|
||||
</When>
|
||||
<When Condition=" '$(VisualStudioVersion)' == '10.0'">
|
||||
<PropertyGroup>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<Framework>4.0</Framework>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<DefineConstants>NET_40_OR_GREATER</DefineConstants>
|
||||
</PropertyGroup>
|
||||
</When>
|
||||
<Otherwise>
|
||||
<!-- When Condition=" '$(VisualStudioVersion)' == ''" > -->
|
||||
<PropertyGroup>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<Framework>3.5</Framework>
|
||||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
</Otherwise>
|
||||
</Choose>
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{E9DF5ED1-4CBD-4226-B931-9A51610AC14D}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
@ -31,50 +81,36 @@
|
||||
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
<!-- <DefineConstants Condition=" $(Framework) >= '4.0' ">NET_40_OR_GREATER</DefineConstants> -->
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<BaseOutputPath>
|
||||
</BaseOutputPath>
|
||||
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
|
||||
<IntermediateOutputPath>obj\</IntermediateOutputPath>
|
||||
<OutputPath>..\..\..\bin</OutputPath>
|
||||
<BaseOutputPath>$(TargetFrameworkVersion)\</BaseOutputPath>
|
||||
<BaseIntermediateOutputPath>obj\$(TargetFrameworkVersion)\</BaseIntermediateOutputPath>
|
||||
<IntermediateOutputPath>obj\$(TargetFrameworkVersion)\</IntermediateOutputPath>
|
||||
<OutputPath>bin\$(TargetFrameworkVersion)\Debug\</OutputPath>
|
||||
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<BaseOutputPath>
|
||||
</BaseOutputPath>
|
||||
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
|
||||
<IntermediateOutputPath>obj\</IntermediateOutputPath>
|
||||
<OutputPath>..\..\..\bin</OutputPath>
|
||||
<BaseOutputPath>$(TargetFrameworkVersion)\</BaseOutputPath>
|
||||
<BaseIntermediateOutputPath>obj\$(TargetFrameworkVersion)\</BaseIntermediateOutputPath>
|
||||
<IntermediateOutputPath>obj\$(TargetFrameworkVersion)\</IntermediateOutputPath>
|
||||
<OutputPath>bin\$(TargetFrameworkVersion)\Release\</OutputPath>
|
||||
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<DocumentationFile>bin\Release\MySql.Data.XML</DocumentationFile>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Server|AnyCPU' ">
|
||||
<Optimize>true</Optimize>
|
||||
<BaseOutputPath>
|
||||
</BaseOutputPath>
|
||||
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
|
||||
<IntermediateOutputPath>obj\</IntermediateOutputPath>
|
||||
<OutputPath>..\..\..\bin</OutputPath>
|
||||
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>1</WarningLevel>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
@ -267,11 +303,4 @@
|
||||
<PostBuildEvent>
|
||||
</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Develop|AnyCPU' ">
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\..\bin</OutputPath>
|
||||
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
</Project>
|
@ -79,10 +79,10 @@ using System.Security;
|
||||
// documentation for more information on this.
|
||||
//
|
||||
#if DEBUG
|
||||
//[assembly: AssemblyDelaySign(true)]
|
||||
//[assembly: AssemblyKeyFileAttribute(@"..\..\ConnectorNetPublicKey.snk")]
|
||||
[assembly: AssemblyDelaySign(true)]
|
||||
[assembly: AssemblyKeyFileAttribute(@"..\..\ConnectorNetPublicKey.snk")]
|
||||
#endif
|
||||
//[assembly: AssemblyKeyName("ConnectorNet")]
|
||||
[assembly: AssemblyKeyName("ConnectorNet")]
|
||||
[assembly: InternalsVisibleTo("MySql.Data.Tests, PublicKey = 0024000004800000940000000602000000240000525341310004000001000100d973bda91f71752c78294126974a41a08643168271f65fc0fb3cd45f658da01fbca75ac74067d18e7afbf1467d7a519ce0248b13719717281bb4ddd4ecd71a580dfe0912dfc3690b1d24c7e1975bf7eed90e4ab14e10501eedf763bff8ac204f955c9c15c2cf4ebf6563d8320b6ea8d1ea3807623141f4b81ae30a6c886b3ee1")]
|
||||
[assembly: InternalsVisibleTo("MySql.Data.CF.Tests, PublicKey = 0024000004800000940000000602000000240000525341310004000001000100d973bda91f71752c78294126974a41a08643168271f65fc0fb3cd45f658da01fbca75ac74067d18e7afbf1467d7a519ce0248b13719717281bb4ddd4ecd71a580dfe0912dfc3690b1d24c7e1975bf7eed90e4ab14e10501eedf763bff8ac204f955c9c15c2cf4ebf6563d8320b6ea8d1ea3807623141f4b81ae30a6c886b3ee1")]
|
||||
[assembly: InternalsVisibleTo("MySql.Data.Entity, PublicKey = 0024000004800000940000000602000000240000525341310004000001000100d973bda91f71752c78294126974a41a08643168271f65fc0fb3cd45f658da01fbca75ac74067d18e7afbf1467d7a519ce0248b13719717281bb4ddd4ecd71a580dfe0912dfc3690b1d24c7e1975bf7eed90e4ab14e10501eedf763bff8ac204f955c9c15c2cf4ebf6563d8320b6ea8d1ea3807623141f4b81ae30a6c886b3ee1")]
|
||||
|
2
MySql/Tests/MySql.Web.Tests/SessionLockingBuild.bat
Normal file
2
MySql/Tests/MySql.Web.Tests/SessionLockingBuild.bat
Normal file
@ -0,0 +1,2 @@
|
||||
|
||||
xcopy /i /y %1\*.* %2
|
Reference in New Issue
Block a user