Description:
Add Linq library to core project file.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -1,8 +1,8 | |||||
|
1 | { |
|
1 | { |
|
2 | "version": "0.2.0", |
|
2 | "version": "0.2.0", |
|
3 | "configurations": [ |
|
3 | "configurations": [ |
|
4 |
|
|
4 | { |
|
5 |
"name": " |
|
5 | "name": "Launch with Core Debugger", |
|
6 | "type": "coreclr", |
|
6 | "type": "coreclr", |
|
7 | "request": "launch", |
|
7 | "request": "launch", |
|
8 | "preLaunchTask": "Build: Core Debug", |
|
8 | "preLaunchTask": "Build: Core Debug", |
@@ -15,6 +15,19 | |||||
|
15 | "cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1", |
|
15 | "cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1", |
|
16 | "console": "integratedTerminal", |
|
16 | "console": "integratedTerminal", |
|
17 | "internalConsoleOptions": "neverOpen" |
|
17 | "internalConsoleOptions": "neverOpen" |
|
18 | } |
|
18 | }, |
|
|
19 | { | ||
|
|
20 | "type": "lldb", | ||
|
|
21 | "request": "attach", | ||
|
|
22 | "name": "Attach LLDB to Running Process", | ||
|
|
23 | "pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes | ||
|
|
24 | }, | ||
|
|
25 | |||
|
|
26 | { | ||
|
|
27 | "name": "Attach .NET Core to Running Process", | ||
|
|
28 | "type": "coreclr", | ||
|
|
29 | "request": "attach", | ||
|
|
30 | "processId":"${command:pickMyProcess}" | ||
|
|
31 | } | ||
|
19 | ] |
|
32 | ] |
|
20 | } |
|
33 | } |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
NO CONTENT: modified file, binary diff hidden |
@@ -53,6 +53,7 | |||||
|
53 | <PackageReference Include="ImGui.NET" Version="1.78.0" /> |
|
53 | <PackageReference Include="ImGui.NET" Version="1.78.0" /> |
|
54 | <PackageReference Include="Tracery.Net" Version="1.0.0" /> |
|
54 | <PackageReference Include="Tracery.Net" Version="1.0.0" /> |
|
55 | <PackageReference Include="YamlDotNet" Version="9.1.4" /> |
|
55 | <PackageReference Include="YamlDotNet" Version="9.1.4" /> |
|
|
56 | <PackageReference Include="JM.LinqFaster" Version="1.1.2" /> | ||
|
56 | </ItemGroup> |
|
57 | </ItemGroup> |
|
57 | <Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" /> |
|
58 | <Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" /> |
|
58 | <Import Project="..\packages\ImGui.NET.1.78.0\build\net40\ImGui.NET.targets" Condition="Exists('..\packages\ImGui.NET.1.78.0\build\net40\ImGui.NET.targets')" /> |
|
59 | <Import Project="..\packages\ImGui.NET.1.78.0\build\net40\ImGui.NET.targets" Condition="Exists('..\packages\ImGui.NET.1.78.0\build\net40\ImGui.NET.targets')" /> |
You need to be logged in to leave comments.
Login now