File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4848 env :
4949 DOTNET_FORMAT_VERSION : 10.0.100-rtm.25531.102
5050 DOTNET_FORMAT_SOURCE : https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10-transport/nuget/v3/index.json
51- run : dotnet tool install -g dotnet-format --version "${{env.DOTNET_FORMAT_VERSION}}" --add- source "${{env.DOTNET_FORMAT_SOURCE}}"
51+ run : dotnet tool install -g dotnet-format --version "${{env.DOTNET_FORMAT_VERSION}}" --source "${{env.DOTNET_FORMAT_SOURCE}}"
5252
5353 - name : Install wix (locked version)
5454 run : dotnet tool install --global wix --version 6.0.2
Original file line number Diff line number Diff line change 2727using ICSharpCode . ILSpy . AssemblyTree ;
2828using ICSharpCode . ILSpy . TreeNodes ;
2929using ICSharpCode . ILSpy . ViewModels ;
30+ using ICSharpCode . ILSpyX . TreeView ;
3031
3132using TomsToolbox . Wpf ;
3233
@@ -51,9 +52,9 @@ public AnalyzerTreeViewModel(AssemblyTreeModel assemblyTreeModel)
5152
5253 public ICommand AnalyzeCommand => new DelegateCommand ( AnalyzeSelected ) ;
5354
54- private AnalyzerTreeNode [ ] selectedItems = [ ] ;
55+ private SharpTreeNode [ ] selectedItems = [ ] ;
5556
56- public AnalyzerTreeNode [ ] SelectedItems {
57+ public SharpTreeNode [ ] SelectedItems {
5758 get => selectedItems ?? [ ] ;
5859 set {
5960 if ( SelectedItems . SequenceEqual ( value ) )
You can’t perform that action at this time.
0 commit comments