Skip to content

Commit

Permalink
rename the took to cake
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmeijer committed Apr 14, 2012
1 parent a0175d9 commit a4d34d6
Show file tree
Hide file tree
Showing 23 changed files with 25 additions and 24 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ _ReSharper.bs
bin/
bs.5.1.ReSharper.user
bs.suo
obj/
obj/
cake.suo
2 changes: 1 addition & 1 deletion BuildHistory.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace bs
namespace cake
{
public class BuildHistory
{
Expand Down
4 changes: 2 additions & 2 deletions CCompilerTask.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using bs.Tests;
using cake.Tests;

namespace bs
namespace cake
{
public class CCompilerTask
{
Expand Down
2 changes: 1 addition & 1 deletion DependencyGraph.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.IO;
using System.Linq;

namespace bs
namespace cake
{
public class DependencyGraph
{
Expand Down
2 changes: 1 addition & 1 deletion FileAssert.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Text;
using NUnit.Framework;

namespace bs
namespace cake
{
static class FileAssert
{
Expand Down
2 changes: 1 addition & 1 deletion GenerationRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.IO;

namespace bs
namespace cake
{
public class GenerationRecord
{
Expand Down
2 changes: 1 addition & 1 deletion ITargetGeneratingAction.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace bs
namespace cake
{
public interface ITargetGeneratingAction
{
Expand Down
2 changes: 1 addition & 1 deletion IncludeScanner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Linq;
using System.Text.RegularExpressions;

namespace bs
namespace cake
{
public class IncludeScanner
{
Expand Down
2 changes: 1 addition & 1 deletion MissingDependencyException.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace bs
namespace cake
{
public class MissingDependencyException : Exception
{
Expand Down
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Text;

namespace bs
namespace cake
{
class Program
{
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("bs")]
[assembly: AssemblyTitle("cake")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("bs")]
[assembly: AssemblyProduct("cake")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2012")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
2 changes: 1 addition & 1 deletion RecursiveIncludeScanner.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace bs
namespace cake
{
public class RecursiveIncludeScanner
{
Expand Down
2 changes: 1 addition & 1 deletion TargetGenerateInstructions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace bs
namespace cake
{
public class TargetGenerateInstructions
{
Expand Down
2 changes: 1 addition & 1 deletion TargetGenerateSettings.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace bs
namespace cake
{
public class TargetGenerateSettings
{
Expand Down
2 changes: 1 addition & 1 deletion Tests/CCompilerTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.IO;
using NUnit.Framework;

namespace bs.Tests
namespace cake.Tests
{
[TestFixture]
public class CCompilerTests
Expand Down
2 changes: 1 addition & 1 deletion Tests/DependencyGraphTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.IO;
using NUnit.Framework;

namespace bs.Tests
namespace cake.Tests
{
[TestFixture]
public class DependencyGraphTests
Expand Down
2 changes: 1 addition & 1 deletion Tests/DifferentInputFiles.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Text;
using NUnit.Framework;

namespace bs.Tests
namespace cake.Tests
{
[TestFixture]
class DifferentInputFiles : DependencyGraphTests
Expand Down
2 changes: 1 addition & 1 deletion Tests/IncludeScannerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Linq;
using NUnit.Framework;

namespace bs.Tests
namespace cake.Tests
{
[TestFixture]
public class IncludeScannerTest
Expand Down
2 changes: 1 addition & 1 deletion Tests/SimpleAction.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace bs.Tests
namespace cake.Tests
{
class SimpleAction : ITargetGeneratingAction
{
Expand Down
2 changes: 1 addition & 1 deletion Tests/SimpleCopyDepGraph.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Text;
using NUnit.Framework;

namespace bs.Tests
namespace cake.Tests
{
class SimpleCopyDepGraph : DependencyGraphTests
{
Expand Down
2 changes: 1 addition & 1 deletion Tests/TargetWithoutSources.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using NUnit.Framework;

namespace bs.Tests
namespace cake.Tests
{
[TestFixture]
class TargetWithoutSources : DependencyGraphTests
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion bs.sln → cake.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "bs", "bs.csproj", "{F2546F61-0181-4E7D-AD26-5F20F9D2F888}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cake", "cake.csproj", "{F2546F61-0181-4E7D-AD26-5F20F9D2F888}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down

0 comments on commit a4d34d6

Please sign in to comment.