Skip to content

Commit 2198985

Browse files
Updating nuget packages.
1 parent 2a71768 commit 2198985

File tree

27 files changed

+59
-62
lines changed

27 files changed

+59
-62
lines changed

Source/CsDebugScript.CodeGen.App/CsDebugScript.CodeGen.App.csproj

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

1616
<ItemGroup>
17-
<PackageReference Include="CommandLineParser" Version="2.0.275-beta" />
17+
<PackageReference Include="CommandLineParser" Version="2.2.1" />
1818
</ItemGroup>
1919

2020
</Project>

Source/CsDebugScript.CodeGen/CsDebugScript.CodeGen.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.3.2" />
10+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.6.0" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

Source/CsDebugScript.CodeGen/SymbolProviders/DiaModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public static Module Open(XmlModule module)
5757
// Example on how else it can be created.
5858
// Guid clsid = new Guid("E6756135-1E65-4D17-8576-610761398C3C");
5959
// IDiaDataSource dia = (IDiaDataSource)Activator.CreateInstance(Type.GetTypeFromCLSID(clsid));
60-
IDiaDataSource dia = new DiaSource();
60+
IDiaDataSource dia = DiaLoader.CreateDiaSource();
6161
IDiaSession session;
6262
string moduleName = !string.IsNullOrEmpty(module.Name) ? module.Name : Path.GetFileNameWithoutExtension(module.PdbPath).ToLower();
6363

Source/CsDebugScript.CommonUserTypes/CLR/System/Exception.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public Exception(Variable variable)
4444
/// Gets a collection of key/value pairs that provide additional user-defined information about the exception.
4545
/// </summary>
4646
/// <remarks>This property is marked as virtual in System.Exception. Here, we are just reading what is saved in System.Exception and that might not be what you are expecting.</remarks>
47-
/// <exception cref="System.NotImplementedException"></exception>
47+
/// <exception cref="NotImplementedException"></exception>
4848
public new IDictionary Data
4949
{
5050
get

Source/CsDebugScript.CommonUserTypes/NativeTypes/std/map.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ private Variable Value
192192
}
193193

194194
/// <summary>
195-
/// Gets the <see cref="TValue"/> with the specified key.
195+
/// Gets the <c>TValue</c> with the specified key.
196196
/// </summary>
197197
/// <param name="key">The key to locate.</param>
198198
/// <returns>The element that has the specified key in the read-only dictionary.</returns>
@@ -617,7 +617,7 @@ private Variable Value
617617
}
618618

619619
/// <summary>
620-
/// Gets the <see cref="TValue"/> with the specified key.
620+
/// Gets the <c>TValue</c> with the specified key.
621621
/// </summary>
622622
/// <param name="key">The key to locate.</param>
623623
/// <returns>The element that has the specified key in the read-only dictionary.</returns>
@@ -848,7 +848,7 @@ public int Count
848848
}
849849

850850
/// <summary>
851-
/// Gets the <see cref="TValue"/> with the specified key.
851+
/// Gets the <c>TValue</c> with the specified key.
852852
/// </summary>
853853
/// <param name="key">The key to locate.</param>
854854
/// <returns>The element that has the specified key in the read-only dictionary.</returns>

Source/CsDebugScript.CommonUserTypes/NativeTypes/std/unordered_map.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public VisualStudio(Variable variable)
3434
}
3535

3636
/// <summary>
37-
/// Gets the <see cref="TValue"/> with the specified key.
37+
/// Gets the <c>TValue</c> with the specified key.
3838
/// </summary>
3939
/// <param name="key">The key to locate.</param>
4040
/// <returns>The element that has the specified key in the read-only dictionary.</returns>
@@ -237,7 +237,7 @@ public LibStdCpp6(Variable variable)
237237
}
238238

239239
/// <summary>
240-
/// Gets the <see cref="TValue"/> with the specified key.
240+
/// Gets the <c>TValue</c> with the specified key.
241241
/// </summary>
242242
/// <param name="key">The key to locate.</param>
243243
/// <returns>The element that has the specified key in the read-only dictionary.</returns>
@@ -474,7 +474,7 @@ public int Count
474474
}
475475

476476
/// <summary>
477-
/// Gets the <see cref="TValue"/> with the specified key.
477+
/// Gets the <c>TValue</c> with the specified key.
478478
/// </summary>
479479
/// <param name="key">The key to locate.</param>
480480
/// <returns>The element that has the specified key in the read-only dictionary.</returns>

Source/CsDebugScript.DiaSymbolProvider/CsDebugScript.DiaSymbolProvider.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="DIA" Version="1.0.1" />
11+
<PackageReference Include="DIA" Version="1.0.2" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

Source/CsDebugScript.DiaSymbolProvider/DiaModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public DiaModule(string pdbPath, Module module)
6161
{
6262
IDiaSession diaSession;
6363

64-
dia = new DiaSource();
64+
dia = DiaLoader.CreateDiaSource();
6565
dia.loadDataFromPdb(pdbPath);
6666
dia.openSession(out diaSession);
6767
Initialize(diaSession, module);

Source/CsDebugScript.Scripting/CsDebugScript.Scripting.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.3.2" />
11+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.6.0" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

Source/CsDebugScript.Scripting/ScriptExecution.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ private static string Convert(params string[] args)
625625
/// <summary>
626626
/// Options class that determines how user types are imported from modules.
627627
/// </summary>
628-
/// <seealso cref="System.IEquatable{CsDebugScript.ImportUserTypeOptions}" />
628+
/// <seealso cref="System.IEquatable{T}" />
629629
public class ImportUserTypeOptions : IEquatable<ImportUserTypeOptions>
630630
{
631631
/// <summary>

0 commit comments

Comments
 (0)