Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Commit 8a4b8bd

Browse files
committed
reorganize project structure
1 parent a169dd6 commit 8a4b8bd

13 files changed

+65
-5
lines changed

.vscode/launch.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
// Use IntelliSense to find out which attributes exist for C# debugging
3+
// Use hover for the description of the existing attributes
4+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
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}/VueCliMiddleware/bin/Debug/netcoreapp2.2/VueCliMiddleware.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/VueCliMiddleware",
16+
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
17+
"console": "internalConsole",
18+
"stopAtEntry": false,
19+
"internalConsoleOptions": "openOnSessionStart"
20+
},
21+
{
22+
"name": ".NET Core Attach",
23+
"type": "coreclr",
24+
"request": "attach",
25+
"processId": "${command:pickProcess}"
26+
}
27+
]
28+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"dotnet-test-explorer.testProjectPath": "**/*.Tests/*.csproj"
3+
}

.vscode/tasks.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/VueCliMiddleware/VueCliMiddleware.csproj"
11+
],
12+
"problemMatcher": "$msCompile"
13+
},
14+
{
15+
"label": "test",
16+
"command": "dotnet",
17+
"type": "process",
18+
"group": "test",
19+
"args": [
20+
"test",
21+
"${workspaceFolder}/VueCliMiddleware.Tests/VueCliMiddleware.Tests.csproj"
22+
],
23+
"problemMatcher": "$msCompile"
24+
}
25+
]
26+
}

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
# current
2+
* [Bugfix] Fix for potential issue where target string occurs with no following newline. [a169dd6d39912d7e6ecbb13e5fa349860c26af0b]
3+
14
# 2.2.0
25

3-
* [Bugfix] Add support to specify regex as a parameter.
6+
* [Bugfix] Add support to specify regex as a parameter. [e293d5ab914dabdf3e88347f4476233f28a2bf1d]
47
* [Feature] Add experimental support for Yarn runner.
58

69
# 2.2.1
710

8-
Initial Version
11+
Initial Version [5e852715402a9793abf3a26752dea054158214da]

VueCliMiddleware.Tests/VueCliMiddleware.Tests.csproj renamed to src/VueCliMiddleware.Tests/VueCliMiddleware.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18-
<ProjectReference Include="..\src\VueCliMiddleware.csproj" />
18+
<ProjectReference Include="..\VueCliMiddleware\VueCliMiddleware.csproj" />
1919
</ItemGroup>
2020

2121
</Project>

src/VueCliMiddleware.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.28010.2026
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VueCliMiddleware", "VueCliMiddleware.csproj", "{6EF79200-935A-4EBB-BB10-EB233A360210}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VueCliMiddleware", "VueCliMiddleware\VueCliMiddleware.csproj", "{6EF79200-935A-4EBB-BB10-EB233A360210}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VueCliMiddleware.Tests", "..\VueCliMiddleware.Tests\VueCliMiddleware.Tests.csproj", "{36DA789C-1C87-48A3-9A9E-804E9BA5C141}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VueCliMiddleware.Tests", "VueCliMiddleware.Tests\VueCliMiddleware.Tests.csproj", "{36DA789C-1C87-48A3-9A9E-804E9BA5C141}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)