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 | 2 | "version": "0.2.0", |
|
3 | 3 | "configurations": [ |
|
4 |
|
|
|
5 |
"name": " |
|
|
4 | { | |
|
5 | "name": "Launch with Core Debugger", | |
|
6 | 6 | "type": "coreclr", |
|
7 | 7 | "request": "launch", |
|
8 | 8 | "preLaunchTask": "Build: Core Debug", |
@@ -15,6 +15,19 | |||
|
15 | 15 | "cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1", |
|
16 | 16 | "console": "integratedTerminal", |
|
17 | 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 |
@@ -53,6 +53,7 | |||
|
53 | 53 | <PackageReference Include="ImGui.NET" Version="1.78.0" /> |
|
54 | 54 | <PackageReference Include="Tracery.Net" Version="1.0.0" /> |
|
55 | 55 | <PackageReference Include="YamlDotNet" Version="9.1.4" /> |
|
56 | <PackageReference Include="JM.LinqFaster" Version="1.1.2" /> | |
|
56 | 57 | </ItemGroup> |
|
57 | 58 | <Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" /> |
|
58 | 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