Skip to content

Commit 992f696

Browse files
committed
Updated AssemblyDescription to https://github.com/DataBooster/DataAccess
1 parent 587e7ca commit 992f696

Some content is hidden

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

44 files changed

+162
-1
lines changed

DataAccess/Booster/DbLauncher.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ protected virtual void Dispose(bool disposing)
9999
// Original Author: Abel Cheng <abelcys@gmail.com>
100100
// Created Date: 2012-06-10
101101
// Primary Host: http://databooster.codeplex.com
102+
// Updated Host: https://github.com/DataBooster/DataAccess
102103
// Change Log:
103104
// Author Date Comment
104105
//

DataAccess/Booster/DbRocket.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ public DbRocket(int bulkSize)
3232
// Original Author: Abel Cheng <abelcys@gmail.com>
3333
// Created Date: 2012-06-10
3434
// Primary Host: http://databooster.codeplex.com
35+
// Updated Host: https://github.com/DataBooster/DataAccess
3536
// Change Log:
3637
// Author Date Comment
3738
//

DataAccess/Cache/CacheDictionary.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ public IEnumerable<TKey> GetExpiredKeys(TimeSpan validityPeriod)
142142
// Created Date: 2015-03-31
143143
// Original Host: http://dbParallel.codeplex.com
144144
// Primary Host: http://DataBooster.codeplex.com
145+
// Updated Host: https://github.com/DataBooster/DataAccess
145146
// Change Log:
146147
// Author Date Comment
147148
//

DataAccess/Cache/CacheItem.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ public bool Equals(CacheItem<TValue> other)
5454
// Created Date: 2015-03-31
5555
// Original Host: http://dbParallel.codeplex.com
5656
// Primary Host: http://DataBooster.codeplex.com
57+
// Updated Host: https://github.com/DataBooster/DataAccess
5758
// Change Log:
5859
// Author Date Comment
5960
//

DataAccess/Cache/DerivedParametersCache.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,7 @@ static private byte[] TryCastAsBytes(object oValue)
704704
// Created Date: 2014-12-29
705705
// Original Host: http://dbParallel.codeplex.com
706706
// Primary Host: http://DataBooster.codeplex.com
707+
// Updated Host: https://github.com/DataBooster/DataAccess
707708
// Change Log:
708709
// Author Date Comment
709710
//

DataAccess/Cache/DerivedParametersCache.slot.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ static private DbType GetUnderlyingDbType(DbParameter dbParameter)
5656
// Created Date: 2014-12-23
5757
// Original Host: http://dbParallel.codeplex.com
5858
// Primary Host: http://DataBooster.codeplex.com
59+
// Updated Host: https://github.com/DataBooster/DataAccess
5960
// Change Log:
6061
// Author Date Comment
6162
//

DataAccess/ColumnMemberInfo.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public bool SetValue(object rootObject, object dbValue)
5656
// Created Date: 2014-09-15
5757
// Original Host: http://dbParallel.codeplex.com
5858
// Primary Host: http://DataBooster.codeplex.com
59+
// Updated Host: https://github.com/DataBooster/DataAccess
5960
// Change Log:
6061
// Author Date Comment
6162
//
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata minClientVersion="2.6">
4+
<id>DataBooster.Oracle.DataDirect</id>
5+
<version>$version$</version>
6+
<title>$title$ for SQL Server + Oracle(using DataDirect Provider)</title>
7+
<authors>$author$</authors>
8+
<owners>http://databooster.codeplex.com</owners>
9+
<licenseUrl>http://databooster.codeplex.com/license</licenseUrl>
10+
<projectUrl>https://github.com/DataBooster/DataAccess</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>$description$</description>
13+
<releaseNotes>http://databooster.codeplex.com/releases</releaseNotes>
14+
<copyright>Copyright 2012-2017 Abel Cheng</copyright>
15+
<tags>ADO.NET Bulk Booster Launcher Throughput Oracle Progress DataDirect Database DataAccess</tags>
16+
<frameworkAssemblies>
17+
<frameworkAssembly assemblyName="System.Configuration" />
18+
<frameworkAssembly assemblyName="DDTek.Oracle" />
19+
</frameworkAssemblies>
20+
</metadata>
21+
<files>
22+
<file src="..\NuGet\SqlServer\Web.config.transform" target="content" />
23+
<file src="..\NuGet\SqlServer\Web.config.transform" target="content\App.config.transform" />
24+
<file src="..\NuGet\Oracle\DataDirect\Web.config.install.xdt" target="content" />
25+
<file src="..\NuGet\Oracle\DataDirect\Web.config.install.xdt" target="content\App.config.install.xdt" />
26+
<file src="..\NuGet\Oracle\DataDirect\Web.config.uninstall.xdt" target="content" />
27+
<file src="..\NuGet\Oracle\DataDirect\Web.config.uninstall.xdt" target="content\App.config.uninstall.xdt" />
28+
<file src="..\NuGet\Oracle\DataDirect\Readme.txt" target="" />
29+
<file src="..\NuGet\Oracle\DataDirect\DataAccess\*.cs.pp" target="content\DataAccess\Oracle.DataDirect" />
30+
</files>
31+
</package>
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata minClientVersion="2.6">
4+
<id>DataBooster.Oracle.Managed</id>
5+
<version>$version$</version>
6+
<title>$title$ for SQL Server + Oracle(using ODP.NET Managed Driver)</title>
7+
<authors>$author$</authors>
8+
<owners>http://databooster.codeplex.com</owners>
9+
<licenseUrl>http://databooster.codeplex.com/license</licenseUrl>
10+
<projectUrl>https://github.com/DataBooster/DataAccess</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>$description$</description>
13+
<releaseNotes>http://databooster.codeplex.com/releases</releaseNotes>
14+
<copyright>Copyright 2012-2017 Abel Cheng</copyright>
15+
<tags>ADO.NET Bulk Booster Launcher Throughput Oracle ODP.NET Managed Database DataAccess</tags>
16+
<frameworkAssemblies>
17+
<frameworkAssembly assemblyName="System.Configuration" />
18+
</frameworkAssemblies>
19+
</metadata>
20+
<files>
21+
<file src="..\NuGet\SqlServer\Web.config.transform" target="content" />
22+
<file src="..\NuGet\SqlServer\Web.config.transform" target="content\App.config.transform" />
23+
<file src="..\NuGet\Oracle\ODP.NET.Managed\Web.config.install.xdt" target="content" />
24+
<file src="..\NuGet\Oracle\ODP.NET.Managed\Web.config.install.xdt" target="content\App.config.install.xdt" />
25+
<file src="..\NuGet\Oracle\ODP.NET.Managed\Web.config.uninstall.xdt" target="content" />
26+
<file src="..\NuGet\Oracle\ODP.NET.Managed\Web.config.uninstall.xdt" target="content\App.config.uninstall.xdt" />
27+
<file src="..\NuGet\Oracle\ODP.NET.Managed\Readme.txt" target="" />
28+
<file src="..\NuGet\Oracle\ODP.NET.Managed\DataAccess\*.cs.pp" target="content\DataAccess\Oracle.Managed" />
29+
</files>
30+
</package>
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata minClientVersion="2.6">
4+
<id>DataBooster.Oracle.ODP</id>
5+
<version>$version$</version>
6+
<title>$title$ for SQL Server + Oracle(using ODP.NET Unmanaged Driver)</title>
7+
<authors>$author$</authors>
8+
<owners>http://databooster.codeplex.com</owners>
9+
<licenseUrl>http://databooster.codeplex.com/license</licenseUrl>
10+
<projectUrl>https://github.com/DataBooster/DataAccess</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>$description$</description>
13+
<releaseNotes>http://databooster.codeplex.com/releases</releaseNotes>
14+
<copyright>Copyright 2012-2017 Abel Cheng</copyright>
15+
<tags>ADO.NET Bulk Booster Launcher Throughput Oracle ODP.NET Database DataAccess</tags>
16+
<frameworkAssemblies>
17+
<frameworkAssembly assemblyName="System.Configuration" />
18+
<frameworkAssembly assemblyName="Oracle.DataAccess" />
19+
</frameworkAssemblies>
20+
</metadata>
21+
<files>
22+
<file src="..\NuGet\SqlServer\Web.config.transform" target="content" />
23+
<file src="..\NuGet\SqlServer\Web.config.transform" target="content\App.config.transform" />
24+
<file src="..\NuGet\Oracle\ODP.NET\Web.config.install.xdt" target="content" />
25+
<file src="..\NuGet\Oracle\ODP.NET\Web.config.install.xdt" target="content\App.config.install.xdt" />
26+
<file src="..\NuGet\Oracle\ODP.NET\Web.config.uninstall.xdt" target="content" />
27+
<file src="..\NuGet\Oracle\ODP.NET\Web.config.uninstall.xdt" target="content\App.config.uninstall.xdt" />
28+
<file src="..\NuGet\Oracle\ODP.NET\Readme.txt" target="" />
29+
<file src="..\NuGet\Oracle\ODP.NET\DataAccess\*.cs.pp" target="content\DataAccess\Oracle.ODP" />
30+
</files>
31+
</package>

0 commit comments

Comments
 (0)