Skip to content

Commit 6cb0d4a

Browse files
author
Jeff Treuting
committed
File structure changes for TeamCity build server setup
- Build server will build NuGet packages from now on, so removing the nuget directory which had all the old packages in it - Moving the nuspec file to the project directory - Moving the content and tools nuget pacakge directories into the project directory within a _nuget directory - Created new MongoDb, RavenDb, CouchDb and Xml nuspec files so we can publish unstable versions to NuGet if we choose
1 parent 106a90c commit 6cb0d4a

File tree

128 files changed

+107
-347
lines changed

Some content is hidden

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

128 files changed

+107
-347
lines changed

nuget/SharpRepository.CacheRepository/SharpRepository.CacheRepository.nuspec.template renamed to SharpRepository.CacheRepository/SharpRepository.CacheRepository.nuspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>SharpRepository.CacheRepository</id>
5-
<version></version>
5+
<version>0.0.0.0</version>
66
<title>SharpRepository for Cache</title>
77
<authors>Ben Griswold, Jeff Treuting, Fairway Technologies</authors>
88
<owners>jtreuting, bgriswold</owners>
@@ -14,12 +14,12 @@
1414
<copyright>Copyright 2013</copyright>
1515
<tags>SharpRepository Repository Cache</tags>
1616
<dependencies>
17-
<dependency id="SharpRepository.Repository" version="1.3.2.0" />
17+
<dependency id="SharpRepository.Repository" version="{{Repository.Dependency.Version}}" />
1818
</dependencies>
1919
</metadata>
2020
<files>
21-
<file src="content\config.transform" target="content\app.config.transform"/>
22-
<file src="content\config.transform" target="content\web.config.transform"/>
23-
<file src="tools\Install.ps1" target="tools\Install.ps1"/>
21+
<file src="_nuget\content\config.transform" target="content\app.config.transform"/>
22+
<file src="_nuget\content\config.transform" target="content\web.config.transform"/>
23+
<file src="_nuget\tools\Install.ps1" target="tools\Install.ps1"/>
2424
</files>
25-
</package>
25+
</package>

nuget/SharpRepository.CacheRepository/content/config.transform renamed to SharpRepository.CacheRepository/_nuget/content/config.transform

File renamed without changes.

nuget/SharpRepository.CacheRepository/tools/Install.ps1 renamed to SharpRepository.CacheRepository/_nuget/tools/Install.ps1

File renamed without changes.

nuget/SharpRepository.Caching.Memcached/SharpRepository.Caching.Memcached.nuspec.template renamed to SharpRepository.Caching.Memcached/SharpRepository.Caching.Memcached.nuspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>SharpRepository.Caching.Memcached</id>
5-
<version></version>
5+
<version>0.0.0.0</version>
66
<title>SharpRepository Caching Provider for Memcached</title>
77
<authors>Ben Griswold, Jeff Treuting, Fairway Technologies</authors>
88
<owners>jtreuting, bgriswold</owners>
@@ -14,12 +14,12 @@
1414
<copyright>Copyright 2013</copyright>
1515
<tags>SharpRepository Repository Caching Memcached</tags>
1616
<dependencies>
17-
<dependency id="SharpRepository.Repository" version="1.2.0.0" />
17+
<dependency id="SharpRepository.Repository" version="{{Repository.Dependency.Version}}" />
1818
</dependencies>
1919
</metadata>
2020
<files>
21-
<file src="content\config.transform" target="content\app.config.transform"/>
22-
<file src="content\config.transform" target="content\web.config.transform"/>
23-
<file src="tools\Install.ps1" target="tools\Install.ps1"/>
21+
<file src="_nuget\content\config.transform" target="content\app.config.transform"/>
22+
<file src="_nuget\content\config.transform" target="content\web.config.transform"/>
23+
<file src="_nuget\tools\Install.ps1" target="tools\Install.ps1"/>
2424
</files>
25-
</package>
25+
</package>

nuget/SharpRepository.Caching.Memcached/content/config.transform renamed to SharpRepository.Caching.Memcached/_nuget/content/config.transform

File renamed without changes.

nuget/SharpRepository.Caching.Memcached/tools/Install.ps1 renamed to SharpRepository.Caching.Memcached/_nuget/tools/Install.ps1

File renamed without changes.

nuget/SharpRepository.Caching.Redis/SharpRepository.Caching.Redis.nuspec.template renamed to SharpRepository.Caching.Redis/SharpRepository.Caching.Redis.nuspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>SharpRepository.Caching.Redis</id>
5-
<version></version>
5+
<version>0.0.0.0</version>
66
<title>SharpRepository Caching Provider for Redis</title>
77
<authors>Ben Griswold, Jeff Treuting, Fairway Technologies</authors>
88
<owners>jtreuting, bgriswold</owners>
@@ -14,12 +14,12 @@
1414
<copyright>Copyright 2013</copyright>
1515
<tags>SharpRepository Repository Caching Redis</tags>
1616
<dependencies>
17-
<dependency id="SharpRepository.Repository" version="1.2.0.0" />
17+
<dependency id="SharpRepository.Repository" version="{{Repository.Dependency.Version}}" />
1818
</dependencies>
1919
</metadata>
2020
<files>
21-
<file src="content\config.transform" target="content\app.config.transform"/>
22-
<file src="content\config.transform" target="content\web.config.transform"/>
23-
<file src="tools\Install.ps1" target="tools\Install.ps1"/>
21+
<file src="_nuget\content\config.transform" target="content\app.config.transform"/>
22+
<file src="_nuget\content\config.transform" target="content\web.config.transform"/>
23+
<file src="_nuget\tools\Install.ps1" target="tools\Install.ps1"/>
2424
</files>
25-
</package>
25+
</package>

nuget/SharpRepository.Caching.Redis/content/config.transform renamed to SharpRepository.Caching.Redis/_nuget/content/config.transform

File renamed without changes.

nuget/SharpRepository.Caching.Redis/tools/Install.ps1 renamed to SharpRepository.Caching.Redis/_nuget/tools/Install.ps1

File renamed without changes.

nuget/SharpRepository.Ioc.Autofac/SharpRepository.Ioc.Autofac.nuspec.template renamed to SharpRepository.CouchDbRepository/SharpRepository.CouchDbRepository.nuspec

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0"?>
2-
<package>
2+
<package >
33
<metadata>
4-
<id>SharpRepository.Ioc.Autofac</id>
5-
<version></version>
6-
<title>SharpRepository with Autofac IoC</title>
4+
<id>SharpRepository.CouchDbRepository</id>
5+
<version>0.0.0.0</version>
6+
<title>SharpRepository for CouchDB</title>
77
<authors>Ben Griswold, Jeff Treuting, Fairway Technologies</authors>
88
<owners>jtreuting, bgriswold</owners>
99
<licenseUrl>https://github.com/SharpRepository/SharpRepository/blob/develop/license.txt</licenseUrl>
@@ -12,9 +12,11 @@
1212
<description>SharpRepository is a generic repository written in C# which includes support for various relational, document and object databases including Entity Framework, RavenDB, MongoDB, CouchDB and Db4o. SharpRepository includes Xml and InMemory repository implementations as well. SharpRepository offers built-in caching options for AppFabric, memcached and the standard System.Runtime.Caching. SharpRepository also supports Specifications, FetchStrategies, Batches and Traits.</description>
1313
<releaseNotes></releaseNotes>
1414
<copyright>Copyright 2013</copyright>
15-
<tags>SharpRepository Repository IoC Autofac</tags>
15+
<tags>SharpRepository Repository CouchDB</tags>
1616
<dependencies>
17-
<dependency id="SharpRepository.Repository" version="1.2.0.0" />
17+
<dependency id="SharpRepository.Repository" version="{{Repository.Dependency.Version}}" />
1818
</dependencies>
1919
</metadata>
20-
</package>
20+
<files>
21+
</files>
22+
</package>

0 commit comments

Comments
 (0)