Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename Blazor workspace and solution #2068

Merged
merged 4 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# Specific packages
/angular-workspace/projects/example-client-app @rajsite @atmgrifter00
/angular-workspace/projects/ni/nimble-angular @rajsite @atmgrifter00
/packages/nimble-blazor @atmgrifter00 @msmithNI
/packages/blazor-workspace @atmgrifter00 @msmithNI
/packages/nimble-components @rajsite @jattasNI
/packages/nimble-components/.storybook @rajsite @jattasNI @fredvisser
/packages/nimble-components/src/wafer-map @rajsite @jattasNI @DStavilaNI @zszilagy
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,23 @@ jobs:
# Install dependencies
- uses: actions/setup-dotnet@v4
with:
global-json-file: packages/nimble-blazor/global.json
global-json-file: packages/blazor-workspace/global.json
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- run: npm ci
- run: dotnet restore --locked-mode
working-directory: packages/nimble-blazor/
working-directory: packages/blazor-workspace/

# Print resolved dotnet info
- run: dotnet --info
working-directory: packages/nimble-blazor/
working-directory: packages/blazor-workspace/
- run: dotnet --list-sdks
working-directory: packages/nimble-blazor/
working-directory: packages/blazor-workspace/
- run: dotnet --version
working-directory: packages/nimble-blazor/
working-directory: packages/blazor-workspace/

# print a log of outdated npm dependencies
# only informational so swallow error codes
Expand Down
16 changes: 8 additions & 8 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/packages/nimble-blazor/Examples/Demo.Server/Demo.Server.csproj",
"${workspaceFolder}/packages/blazor-workspace/Examples/Demo.Server/Demo.Server.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"options": {
"cwd": "${workspaceFolder}/packages/nimble-blazor/Examples/Demo.Server/"
"cwd": "${workspaceFolder}/packages/blazor-workspace/Examples/Demo.Server/"
},
"problemMatcher": "$msCompile"
},
Expand All @@ -102,12 +102,12 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/packages/nimble-blazor/Examples/Demo.Client/Demo.Client.csproj",
"${workspaceFolder}/packages/blazor-workspace/Examples/Demo.Client/Demo.Client.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"options": {
"cwd": "${workspaceFolder}/packages/nimble-blazor/Examples/Demo.Client/"
"cwd": "${workspaceFolder}/packages/blazor-workspace/Examples/Demo.Client/"
},
"problemMatcher": "$msCompile"
},
Expand All @@ -119,10 +119,10 @@
"watch",
"run",
"--project",
"${workspaceFolder}/packages/nimble-blazor/Examples/Demo.Server/Demo.Server.csproj"
"${workspaceFolder}/packages/blazor-workspace/Examples/Demo.Server/Demo.Server.csproj"
],
"options": {
"cwd": "${workspaceFolder}/packages/nimble-blazor/Examples/Demo.Server/"
"cwd": "${workspaceFolder}/packages/blazor-workspace/Examples/Demo.Server/"
},
"problemMatcher": "$msCompile"
},
Expand All @@ -134,10 +134,10 @@
"watch",
"run",
"--project",
"${workspaceFolder}/packages/nimble-blazor/Examples/Demo.Client/Demo.Client.csproj"
"${workspaceFolder}/packages/blazor-workspace/Examples/Demo.Client/Demo.Client.csproj"
],
"options": {
"cwd": "${workspaceFolder}/packages/nimble-blazor/Examples/Demo.Client/"
"cwd": "${workspaceFolder}/packages/blazor-workspace/Examples/Demo.Client/"
},
"problemMatcher": "$msCompile"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Test release from renamed Blazor workspace and solution",
"packageName": "@ni/nimble-blazor",
"email": "7282195+m-akinc@users.noreply.github.com",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Test release from renamed Blazor workspace and solution",
"packageName": "@ni/spright-blazor",
"email": "7282195+m-akinc@users.noreply.github.com",
"dependentChangeType": "none"
}
76 changes: 38 additions & 38 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
"angular-workspace",
"angular-workspace/projects/ni/nimble-angular",
"angular-workspace/projects/ni/spright-angular",
"packages/nimble-blazor",
"packages/nimble-blazor/NimbleBlazor",
"packages/nimble-blazor/SprightBlazor",
"packages/blazor-workspace",
"packages/blazor-workspace/NimbleBlazor",
"packages/blazor-workspace/SprightBlazor",
"packages/performance",
"packages/site"
],
Expand Down
Loading
Loading