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

Add new tasks, update paths, and add debug config #70

Merged
merged 1 commit into from
Sep 20, 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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions MatLidStore.slnLaunch
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"Name": "Full Debug",
"Projects": [
{
"Path": "src\\MLS.Api\\MLS.Api.csproj",
"Action": "Start",
"DebugTarget": "MLS.Api"
},
{
"Path": "src\\MLS.MatLidStoreUI\\MLS.MatLidStoreUI.esproj",
"Action": "Start",
"DebugTarget": "ng serve"
}
]
}
]
43 changes: 20 additions & 23 deletions src/MLS.MatLidStoreUI/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,39 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"label": "npm: start",
"type": "npm",
"script": "start",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
"problemMatcher": [
{
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": "Compiling",
"endsPattern": "Angular Live Development Server is listening on"
}
}
}
]
},
{
"label": "npm: test",
"type": "npm",
"script": "test",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
"problemMatcher": [
{
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": "Compiling",
"endsPattern": "Executed .* specs"
}
}
}
]
}
]
}
7 changes: 1 addition & 6 deletions src/MLS.MatLidStoreUI/MLS.MatLidStoreUI.esproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
<!-- Allows the build (or compile) script located on package.json to run on Build -->
<ShouldRunBuildScript>false</ShouldRunBuildScript>
<!-- Folder where production build objects will be placed -->
<BuildOutputFolder>$(MSBuildProjectDirectory)\dist\MLS.MatLidStoreUI\</BuildOutputFolder>
<BuildOutputFolder>$(MSBuildProjectDirectory)\dist\matlidstore-ui\</BuildOutputFolder>
</PropertyGroup>
<ItemGroup>
<Folder Include="src\app\core\" />
<Folder Include="src\app\modules\" />
<Folder Include="src\app\theme\" />
</ItemGroup>
</Project>
Loading