Skip to content

Commit a6a5ae4

Browse files
committed
rename to outback
1 parent 451d331 commit a6a5ae4

61 files changed

Lines changed: 95 additions & 180 deletions

Some content is hidden

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

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010
env:
1111
DOTNET_VERSION: "8.0.x"
1212
BUILD_CONFIG: "Release"
13-
SOLUTION: "src/dotnet/Koalas.slnx"
14-
PROJECT: "src/dotnet/Koalas/Koalas.csproj"
13+
SOLUTION: "src/dotnet/Outback.slnx"
14+
PROJECT: "src/dotnet/Outback/Outback.csproj"
1515
ARTIFACTS_DIR: "./artifacts"
1616
PREVIEW_VERSION: "2.0.0"
1717

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,5 +351,3 @@ MigrationBackup/
351351

352352
# Ionide (cross platform F# VS Code tools) working folder
353353
.ionide/
354-
src/python/koalas.egg-info/SOURCES.txt
355-
src/python/koalas.egg-info/SOURCES.txt

.scratch/Koalas-Scratch.dib

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44

55
#!csharp
66

7-
#r "C:\src\koalas\artifacts\bin\Koalas\debug\Koalas.dll"
7+
#r "C:\src\Outback\artifacts\bin\Outback\debug\Outback.dll"
88

9-
using Koalas.Text;
10-
using Koalas.Extensions;
11-
using static Koalas.FileInfoHelper;
12-
using static Koalas.DirectoryInfoHelper;
9+
using Outback.Text;
10+
using Outback.Extensions;
11+
using static Outback.FileInfoHelper;
12+
using static Outback.DirectoryInfoHelper;
1313

1414
#!csharp
1515

16-
//var files = Files(Directory(@"C:\\src\\koalas\\src\\Koalas\\Extensions"));
17-
var files = Directory(@"C:\\src\\koalas\\src\\Koalas\\Extensions").Files();
16+
//var files = Files(Directory(@"C:\\src\\Outback\\src\\Outback\\Extensions"));
17+
var files = Directory(@"C:\\src\\Outback\\src\\Outback\\Extensions").Files();
1818
files.Print();
1919

2020
var lines = files.ReadLines();

.vscode/launch.json

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +0,0 @@
1-
// {
2-
// "version": "0.2.0",
3-
// "configurations": [
4-
// {
5-
// // Use IntelliSense to find out which attributes exist for C# debugging
6-
// // Use hover for the description of the existing attributes
7-
// // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
8-
// "name": ".NET Core Launch (console)",
9-
// "type": "coreclr",
10-
// "request": "launch",
11-
// "preLaunchTask": "build",
12-
// // If you have changed target frameworks, make sure to update the program path.
13-
// "program": "${workspaceFolder}/src/Koalas.CommandLine/bin/Debug/Koalas.CommandLine.dll",
14-
// "args": [],
15-
// "cwd": "${workspaceFolder}/src/Koalas.CommandLine",
16-
// // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
17-
// "console": "internalConsole",
18-
// "stopAtEntry": false
19-
// },
20-
// {
21-
// "name": ".NET Core Attach",
22-
// "type": "coreclr",
23-
// "request": "attach"
24-
// }
25-
// ]
26-
// }

.vscode/tasks.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"type": "process",
1212
"args": [
1313
"build",
14-
"./src/dotnet/Koalas.slnx",
14+
"./src/dotnet/Outback.slnx",
1515
"/property:GenerateFullPaths=true",
1616
],
1717
"problemMatcher": "$msCompile",
@@ -48,7 +48,7 @@
4848
"test",
4949
],
5050
"options": {
51-
"cwd": "${workspaceFolder}/src/dotnet/Koalas.Tests"
51+
"cwd": "${workspaceFolder}/src/dotnet/Outback.Tests"
5252
},
5353
"problemMatcher": "$msCompile",
5454
"group": {
@@ -70,7 +70,7 @@
7070
"quiet"
7171
],
7272
"options": {
73-
"cwd": "${workspaceFolder}/src/dotnet/Koalas.Tests"
73+
"cwd": "${workspaceFolder}/src/dotnet/Outback.Tests"
7474
},
7575
"problemMatcher": "$msCompile",
7676
"group": "test",

src/dotnet/Koalas.CommandLine/Koalas.CommandLine.csproj

Lines changed: 0 additions & 20 deletions
This file was deleted.

src/dotnet/Koalas.CommandLine/Program.cs

Lines changed: 0 additions & 36 deletions
This file was deleted.

src/dotnet/Koalas.Tests/DirectoryInfoHelperTests.cs renamed to src/dotnet/Outback.Tests/DirectoryInfoHelperTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Reflection;
22
using Microsoft.VisualBasic;
33

4-
namespace Koalas.Tests;
4+
namespace Outback.Tests;
55

66
public sealed class DirectoryInfoHelperTests : IDisposable
77
{

src/dotnet/Koalas.Tests/FileInfoHelperTests.cs renamed to src/dotnet/Outback.Tests/FileInfoHelperTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using Koalas.Extensions;
1+
using Outback.Extensions;
22

3-
namespace Koalas.Tests;
3+
namespace Outback.Tests;
44

55
public sealed class FileInfoHelperTests : IDisposable
66
{

0 commit comments

Comments
 (0)