-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from BalassaMarton/move-shell-to-src
Move the shell and node-launcher under src/
- Loading branch information
Showing
47 changed files
with
192 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 0 additions & 38 deletions
38
Tryouts/Prototypes/Shell/Node-launcher/MultiWindowDemo/index.html
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
Tryouts/Prototypes/Shell/Node-launcher/MultiWindowDemo/popup.html
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
. "$PSScriptRoot/dotnet-common.ps1" | ||
|
||
$failedSolutions = @() | ||
|
||
foreach ($sln in GetSolutions) { | ||
dotnet pack $sln --configuration Release --no-build | ||
|
||
if ($LASTEXITCODE -ne 0 ) { | ||
$failedSolutions += $sln | ||
} | ||
} | ||
|
||
if ($failedSolutions.count -gt 0) { | ||
throw "Build FAILED for solutions $failedSolutions" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# ComposeUI Shell | ||
|
||
This solution contains the ComposeUI shell for Windows. | ||
|
||
# Usage | ||
|
||
|
||
## Usage with `composeui-node-launcher` | ||
|
||
The shell binaries must be globally accessible (ie. included in `PATH`) for `composeui-node-launcher` to work. | ||
|
||
## Development setup | ||
|
||
1. Build the solution | ||
2. Run the `add-to-path.ps1` script to add the shell project's debug output directory to the user's PATH variable. | ||
This step is necessary to make the shell available as a global command. |
Oops, something went wrong.