Skip to content

Commit

Permalink
Switch from SVN to Git for the official repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpareja committed Mar 23, 2013
1 parent 573604d commit 0481720
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 14 deletions.
5 changes: 3 additions & 2 deletions Settings/LOCAL.settings
Expand Up @@ -17,7 +17,8 @@


<!-- base settings --> <!-- base settings -->
<property name="project.name" value="RoundhousE" overwrite="false" /> <property name="project.name" value="RoundhousE" overwrite="false" />
<property name="repository.path" value="http://roundhouse.googlecode.com/svn" /> <property name="source_control_type" value="git" overwrite="false" />
<property name="repository.path" value="https://github.com/chucknorris/roundhouse.git" overwrite="false" />
<property name="folder.app.drop" value="${project.name}" overwrite="false" /> <property name="folder.app.drop" value="${project.name}" overwrite="false" />
<property name="folder.database" value="db" overwrite="false" /> <property name="folder.database" value="db" overwrite="false" />


Expand All @@ -28,4 +29,4 @@
<property name="connection.string" value="Server=${server.database};Database=TestRoundhousE;Integrated Security=True;" overwrite="false" /> <property name="connection.string" value="Server=${server.database};Database=TestRoundhousE;Integrated Security=True;" overwrite="false" />
<property name="restore.from.path" value="..\${database.name}.bak" overwrite="false" /> <property name="restore.from.path" value="..\${database.name}.bak" overwrite="false" />


</project> </project>
4 changes: 2 additions & 2 deletions nuget/roundhouse.lib/roundhouse.lib.nuspec
Expand Up @@ -12,10 +12,10 @@
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> <licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance> <requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>roundhouse db migrations chucknorris</tags> <tags>roundhouse db migrations chucknorris</tags>
<iconUrl>http://roundhouse.googlecode.com/svn/trunk/nuget/RoundhousE_Logo.NuGet.jpg</iconUrl> <iconUrl>https://raw.github.com/chucknorris/roundhouse/master/nuget/RoundhousE_Logo.NuGet.jpg</iconUrl>
<dependencies> <dependencies>
<dependency id="log4net" version="[1.2.10]" /> <dependency id="log4net" version="[1.2.10]" />
<dependency id="FluentNHibernate" version="1.3.0.717" /> <dependency id="FluentNHibernate" version="1.3.0.717" />
</dependencies> </dependencies>
</metadata> </metadata>
</package> </package>
4 changes: 2 additions & 2 deletions nuget/roundhouse.msbuild/roundhouse.msbuild.nuspec
Expand Up @@ -12,9 +12,9 @@
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> <licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance> <requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>roundhouse db migrations msbuild chucknorris</tags> <tags>roundhouse db migrations msbuild chucknorris</tags>
<iconUrl>http://roundhouse.googlecode.com/svn/trunk/nuget/RoundhousE_Logo.NuGet.jpg</iconUrl> <iconUrl>https://raw.github.com/chucknorris/roundhouse/master/nuget/RoundhousE_Logo.NuGet.jpg</iconUrl>
<dependencies> <dependencies>
<dependency id="log4net" version="[1.2.10]" /> <dependency id="log4net" version="[1.2.10]" />
</dependencies> </dependencies>
</metadata> </metadata>
</package> </package>
Expand Up @@ -12,9 +12,9 @@
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> <licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance> <requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>roundhouse db migrations chucknorris</tags> <tags>roundhouse db migrations chucknorris</tags>
<iconUrl>http://roundhouse.googlecode.com/svn/trunk/nuget/RoundhousE_Logo.NuGet.jpg</iconUrl> <iconUrl>https://raw.github.com/chucknorris/roundhouse/master/nuget/RoundhousE_Logo.NuGet.jpg</iconUrl>
<dependencies> <dependencies>
<dependency id="roundhouse.lib" version="0.7.0.282" /> <dependency id="roundhouse.lib" version="0.7.0.282" />
</dependencies> </dependencies>
</metadata> </metadata>
</package> </package>
4 changes: 2 additions & 2 deletions nuget/roundhouse/roundhouse.nuspec
Expand Up @@ -12,6 +12,6 @@
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> <licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance> <requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>roundhouse db migrations chocolatey chucknorris</tags> <tags>roundhouse db migrations chocolatey chucknorris</tags>
<iconUrl>http://roundhouse.googlecode.com/svn/trunk/nuget/RoundhousE_Logo.NuGet.jpg</iconUrl> <iconUrl>https://raw.github.com/chucknorris/roundhouse/master/nuget/RoundhousE_Logo.NuGet.jpg</iconUrl>
</metadata> </metadata>
</package> </package>
4 changes: 2 additions & 2 deletions sample/BuildDatabase/RefreshDatabase.cs
Expand Up @@ -31,7 +31,7 @@ public class RefreshDatabase


private static string _databaseName = "TestRoundhousE"; private static string _databaseName = "TestRoundhousE";
private static string _pathToSqlScripts = @"..\..\..\..\db\SQLServer\TestRoundhousE"; private static string _pathToSqlScripts = @"..\..\..\..\db\SQLServer\TestRoundhousE";
private static string _repositoryPath = "http://roundhouse.googlecode.com/svn"; private static string _repositoryPath = "https://github.com/chucknorris/roundhouse.git";


private static bool _restoreDuringMaintenance = true; private static bool _restoreDuringMaintenance = true;
private static string _pathToRestore = @"..\..\..\..\code_drop\sample\deployment\TestRoundhousE.bak"; private static string _pathToRestore = @"..\..\..\..\code_drop\sample\deployment\TestRoundhousE.bak";
Expand Down Expand Up @@ -79,4 +79,4 @@ private static void RunRoundhouseNhibernate()
new DifferenceWithFluentNHibernate().Run(diffType, scriptName, migrator, mappingsAssembly, conventionsAssembly); new DifferenceWithFluentNHibernate().Run(diffType, scriptName, migrator, mappingsAssembly, conventionsAssembly);
} }
} }
} }
4 changes: 2 additions & 2 deletions sample/BuildDatabase/rh.redgate.diff.bat
Expand Up @@ -7,11 +7,11 @@ SET DIR=C:\code\roundhouse\code_drop\sample\deployment\
SET database.name="TestRoundhousE" SET database.name="TestRoundhousE"
SET sql.files.directory="%DIR%..\..\..\db\SQLServer\TestRoundhousE" SET sql.files.directory="%DIR%..\..\..\db\SQLServer\TestRoundhousE"
SET server.database="(local)" SET server.database="(local)"
SET repository.path="http://roundhouse.googlecode.com/svn" SET repository.path="https://github.com/chucknorris/roundhouse.git"
SET version.file="_BuildInfo.xml" SET version.file="_BuildInfo.xml"
SET version.xpath="//buildInfo/version" SET version.xpath="//buildInfo/version"
SET environment=LOCAL SET environment=LOCAL


"%DIR%Console\rh.exe" rh.redgate.diff /d=%database.name% /f=%sql.files.directory% /s=%server.database% /vf=%version.file% /vx=%version.xpath% /r=%repository.path% /env=%environment% /simple "%DIR%Console\rh.exe" rh.redgate.diff /d=%database.name% /f=%sql.files.directory% /s=%server.database% /vf=%version.file% /vx=%version.xpath% /r=%repository.path% /env=%environment% /simple


pause pause

0 comments on commit 0481720

Please sign in to comment.