【例子介绍】LogViewer
可以读取UDp协议的日志文件或txt文本文件,支持查询、过滤等多种功能。
【相关图片】
【源码结构】
.
├── LogViewer-master
│ ├── LICENSE
│ ├── README.md
│ ├── docs
│ │ ├── 1-main.png
│ │ ├── 2-log-dialog.png
│ │ ├── 3-logger-dialog.png
│ │ ├── 4-main-searching.png
│ │ ├── 5-settings-main.png
│ │ ├── 6-settings-receivers.png
│ │ └── 7-settings-ignored-ips.png
│ └── src
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Converters
│ │ ├── CountToVisibilityConverter.cs
│ │ ├── DataConverter.cs
│ │ ├── LoggerDisplayConverter.cs
│ │ ├── MaxLengthConverter.cs
│ │ ├── ProgressStateConverter.cs
│ │ └── TreeViewLineConverter.cs
│ ├── CustomColorPicker.dll
│ ├── Enums
│ │ ├── eImportTemplateParameters.cs
│ │ └── eLogLevel.cs
│ ├── Helpers
│ │ ├── AsyncObservableCollection.cs
│ │ ├── BindableSelectedItemBehavior.cs
│ │ ├── DialogCloser.cs
│ │ ├── ExtensionMethods.cs
│ │ ├── FileWatcher.cs
│ │ ├── SearchableTextControl.cs
│ │ ├── TVIExtender.cs
│ │ └── UnsafeNative.cs
│ ├── Localization
│ │ ├── LanguageEventArgs.cs
│ │ ├── LocBinding.cs
│ │ ├── Locals.Designer.cs
│ │ ├── Locals.en.resx
│ │ ├── Locals.resx
│ │ └── TranslationSource.cs
│ ├── LogViewer.csproj
│ ├── LogViewer.csproj.user
│ ├── LogViewer.psess
│ ├── LogViewer.sln
│ ├── LogViewer.sln.DotSettings
│ ├── LogViewer200225.vspx
│ ├── MVVM
│ │ ├── Commands
│ │ │ └── RelayCommand.cs
│ │ ├── Models
│ │ │ ├── IgnoredIPAddress.cs
│ │ │ ├── ImportLogFile.cs
│ │ │ ├── LogMessage.cs
│ │ │ ├── LogTemplate.cs
│ │ │ ├── LogTemplateItem.cs
│ │ │ ├── LogTemplateItemInfo.cs
│ │ │ ├── Receiver.cs
│ │ │ ├── ReleaseNotes.cs
│ │ │ ├── Settings.cs
│ │ │ └── Theme.cs
│ │ ├── TreeView
│ │ │ ├── CheckBoxId.cs
│ │ │ └── Node.cs
│ │ ├── ViewModels
│ │ │ ├── BaseViewModel.cs
│ │ │ ├── ImportLogsProcessViewModel.cs
│ │ │ ├── LogImportTemplateViewModel.cs
│ │ │ ├── LogViewModel.cs
│ │ │ ├── ReleaseNotesViewModel.cs
│ │ │ ├── SearchResultViewModel.cs
│ │ │ └── SettingsViewModel.cs
│ │ └── Views
│ │ ├── ImportLogsProcessDialog.xaml
│ │ ├── ImportLogsProcessDialog.xaml.cs
│ │ ├── LogImportTemplateDialog.xaml
│ │ ├── LogImportTemplateDialog.xaml.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── NewUpdateAvailableDialog.xaml
│ │ ├── NewUpdateAvailableDialog.xaml.cs
│ │ ├── ReleaseNotesDialog.xaml
│ │ ├── ReleaseNotesDialog.xaml.cs
│ │ ├── SearchResult.xaml
│ │ ├── SearchResult.xaml.cs
│ │ ├── SelectTimeIntervalDialog.xaml
│ │ ├── SelectTimeIntervalDialog.xaml.cs
│ │ ├── SelectTimestampDialog.xaml
│ │ ├── SelectTimestampDialog.xaml.cs
│ │ ├── SettingsWindow.xaml
│ │ └── SettingsWindow.xaml.cs
│ ├── Properties
│ │ ├── Annotations.cs
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ ├── Settings.settings
│ │ └── app.manifest
│ ├── ReleaseNotes.xml
│ ├── Styles
│ │ ├── DrawingImages.xaml
│ │ └── Styles.xaml
│ ├── UDPPacketsParser.cs
│ ├── UpdateManager.cs
│ ├── Validations
│ │ ├── IPValidation.cs
│ │ └── PortNumberValidation.cs
│ ├── bin
│ │ └── Debug
│ ├── log.ico
│ ├── obj
│ │ └── Debug
│ │ ├── App.g.cs
│ │ ├── App.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ ├── LogViewer.csproj.AssemblyReference.cache
│ │ ├── LogViewer.csproj.SuggestedBindingRedirects.cache
│ │ ├── LogViewer_Content.g.cs
│ │ ├── LogViewer_Content.g.i.cs
│ │ ├── LogViewer_MarkupCompile.cache
│ │ ├── LogViewer_MarkupCompile.lref
│ │ ├── MVVM
│ │ │ └── Views
│ │ │ ├── ImportLogsProcessDialog.g.cs
│ │ │ ├── ImportLogsProcessDialog.g.i.cs
│ │ │ ├── LogImportTemplateDialog.g.cs
│ │ │ ├── LogImportTemplateDialog.g.i.cs
│ │ │ ├── MainWindow.g.cs
│ │ │ ├── MainWindow.g.i.cs
│ │ │ ├── NewUpdateAvailableDialog.g.cs
│ │ │ ├── NewUpdateAvailableDialog.g.i.cs
│ │ │ ├── ReleaseNotesDialog.g.cs
│ │ │ ├── ReleaseNotesDialog.g.i.cs
│ │ │ ├── SearchResult.g.cs
│ │ │ ├── SearchResult.g.i.cs
│ │ │ ├── SelectTimeIntervalDialog.g.cs
│ │ │ ├── SelectTimeIntervalDialog.g.i.cs
│ │ │ ├── SelectTimestampDialog.g.cs
│ │ │ ├── SelectTimestampDialog.g.i.cs
│ │ │ ├── SettingsWindow.g.cs
│ │ │ └── SettingsWindow.g.i.cs
│ │ ├── Styles
│ │ └── TempPE
│ ├── packages
│ │ ├── MSTest.TestAdapter.1.2.0
│ │ │ ├── MSTest.TestAdapter.1.2.0.nupkg
│ │ │ └── build
│ │ │ ├── _common
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll
│ │ │ │ ├── cs
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ │ ├── de
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ │ ├── es
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ │ ├── fr
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ │ ├── it
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ │ ├── ja
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ │ ├── ko
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ │ ├── pl
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ │ ├── pt
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ │ ├── ru
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ │ ├── tr
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ │ ├── zh-Hans
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ │ └── zh-Hant
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ │ │ ├── net45
│ │ │ │ ├── MSTest.TestAdapter.props
│ │ │ │ └── MSTest.TestAdapter.targets
│ │ │ ├── netcoreapp1.0
│ │ │ │ ├── MSTest.TestAdapter.props
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
│ │ │ └── uap10.0
│ │ │ ├── MSTest.TestAdapter.props
│ │ │ ├── MSTest.TestAdapter.targets
│ │ │ └── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
│ │ ├── MSTest.TestFramework.1.2.0
│ │ │ ├── MSTest.TestFramework.1.2.0.nupkg
│ │ │ └── lib
│ │ │ ├── net45
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll
│ │ │ │ ├── cs
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── de
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── es
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── fr
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── it
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── ja
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── ko
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── pl
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── pt
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── ru
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── tr
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── zh-Hans
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ └── zh-Hant
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ ├── netstandard1.0
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll
│ │ │ │ ├── cs
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── de
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── es
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── fr
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── it
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── ja
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── ko
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── pl
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── pt
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── ru
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── tr
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ ├── zh-Hans
│ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ │ └── zh-Hant
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ └── uap10.0
│ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML
│ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
│ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML
│ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll
│ │ │ ├── cs
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ ├── de
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ ├── es
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ ├── fr
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ ├── it
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ ├── ja
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ ├── ko
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ ├── pl
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ ├── pt
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ ├── ru
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ ├── tr
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ ├── zh-Hans
│ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ │ └── zh-Hant
│ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│ │ ├── MaterialDesignColors.1.2.7
│ │ │ ├── MaterialDesignColors.1.2.7.nupkg
│ │ │ ├── images
│ │ │ │ └── MaterialDesignColors.Icon.png
│ │ │ └── lib
│ │ │ ├── net45
│ │ │ │ ├── MaterialDesignColors.dll
│ │ │ │ └── MaterialDesignColors.pdb
│ │ │ └── netcoreapp3.1
│ │ │ ├── MaterialDesignColors.dll
│ │ │ └── MaterialDesignColors.pdb
│ │ ├── MaterialDesignThemes.3.2.0
│ │ │ ├── MaterialDesignThemes.3.2.0.nupkg
│ │ │ ├── build
│ │ │ │ ├── MaterialDesignThemes.targets
│ │ │ │ └── Resources
│ │ │ │ └── Roboto
│ │ │ │ ├── Roboto-Black.ttf
│ │ │ │ ├── Roboto-BlackItalic.ttf
│ │ │ │ ├── Roboto-Bold.ttf
│ │ │ │ ├── Roboto-BoldItalic.ttf
│ │ │ │ ├── Roboto-Italic.ttf
│ │ │ │ ├── Roboto-Light.ttf
│ │ │ │ ├── Roboto-LightItalic.ttf
│ │ │ │ ├── Roboto-Medium.ttf
│ │ │ │ ├── Roboto-MediumItalic.ttf
│ │ │ │ ├── Roboto-Regular.ttf
│ │ │ │ ├── Roboto-Thin.ttf
│ │ │ │ ├── Roboto-ThinItalic.ttf
│ │ │ │ ├── RobotoCondensed-Bold.ttf
│ │ │ │ ├── RobotoCondensed-BoldItalic.ttf
│ │ │ │ ├── RobotoCondensed-Italic.ttf
│ │ │ │ ├── RobotoCondensed-Light.ttf
│ │ │ │ ├── RobotoCondensed-LightItalic.ttf
│ │ │ │ └── RobotoCondensed-Regular.ttf
│ │ │ ├── images
│ │ │ │ └── MaterialDesignThemes.Icon.png
│ │ │ ├── lib
│ │ │ │ ├── net45
│ │ │ │ │ ├── MaterialDesignThemes.Wpf.dll
│ │ │ │ │ ├── MaterialDesignThemes.Wpf.pdb
│ │ │ │ │ └── MaterialDesignThemes.Wpf.xml
│ │ │ │ └── netcoreapp3.1
│ │ │ │ ├── MaterialDesignThemes.Wpf.dll
│ │ │ │ ├── MaterialDesignThemes.Wpf.pdb
│ │ │ │ └── MaterialDesignThemes.Wpf.xml
│ │ │ └── tools
│ │ │ └── VisualStudioToolsManifest.xml
│ │ ├── NLog.4.5.11
│ │ │ ├── NLog.4.5.11.nupkg
│ │ │ └── lib
│ │ │ ├── monoandroid44
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── net35
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── net40-client
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── net45
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── netstandard1.3
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── netstandard1.5
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── netstandard2.0
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── sl4
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── sl5
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── wp8
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ └── xamarinios10
│ │ │ ├── NLog.dll
│ │ │ └── NLog.xml
│ │ └── System.Windows.Interactivity.WPF.2.0.20525
│ │ ├── System.Windows.Interactivity.WPF.2.0.20525.nupkg
│ │ └── lib
│ │ └── net40
│ │ ├── Microsoft.Expression.Interactions.dll
│ │ ├── Microsoft.Expression.Interactions.xml
│ │ ├── System.Windows.Interactivity.dll
│ │ └── System.Windows.Interactivity.xml
│ └── packages.config
├── des.v11.suo
└── 5t6t网C#_LogViewer-master.rar
118 directories, 330 files
评论