Repository: Gniang/RoundedTB
Branch: master
Commit: b78e5d6e9ced
Files: 39
Total size: 480.3 KB
Directory structure:
gitextract_2jsysl7i/
├── .gitattributes
├── .github/
│ └── workflows/
│ └── ci.yml
├── .gitignore
├── AnalysisReport.sarif
├── LICENSE
├── PackagingProject/
│ ├── Package.appxmanifest
│ └── RoundedTB.Package.wapproj
├── README.md
├── RoundedTB/
│ ├── .editorconfig
│ ├── AboutWindow.xaml
│ ├── AboutWindow.xaml.cs
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── AppBars.cs
│ ├── Background.cs
│ ├── EnumerableExtensions.cs
│ ├── FodyWeavers.xml
│ ├── IAppVisibility.cs
│ ├── Infobox.xaml
│ ├── Infobox.xaml.cs
│ ├── Interaction.cs
│ ├── LocalPInvoke.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── MonitorStuff.cs
│ ├── Properties/
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── RoundedTB.csproj
│ ├── Taskbar.cs
│ ├── TaskbarEffect.xaml
│ ├── TaskbarEffect.xaml.cs
│ ├── Types.cs
│ └── app.manifest
├── RoundedTB.sln
└── upgrade-assistant.clef
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitattributes
================================================
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto
###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp
###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary
###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg binary
#*.png binary
#*.gif binary
###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain
================================================
FILE: .github/workflows/ci.yml
================================================
name: release
on:
push:
jobs:
build:
name: build-windows
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up MSBuild
uses: microsoft/setup-msbuild@v1
- name: NuGet Restore
run: |
cd ${{ github.workspace }}
nuget restore RoundedTB.sln
- name: Build
run: |
cd ${{ github.workspace }}
msbuild "-property:Configuration=Release" -t:RoundedTB
- name: Add commit hash to output folder
run: |
Rename-Item -Path ".\RoundedTB\bin\Release" -NewName "RoundedTB-$(git rev-parse --short ${{ github.sha }})"
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: rtb-artifacts
path: |
.\RoundedTB\bin\RoundedTB-*\
================================================
FILE: .gitignore
================================================
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
# Mono auto generated files
mono_crash.*
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Oo]ut/
[Ll]og/
[Ll]ogs/
# Visual Studio 2015/2017 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
# Visual Studio 2017 auto generated files
Generated\ Files/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
# NUnit
*.VisualState.xml
TestResult.xml
nunit-*.xml
# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c
# Benchmark Results
BenchmarkDotNet.Artifacts/
# .NET Core
project.lock.json
project.fragment.lock.json
artifacts/
# ASP.NET Scaffolding
ScaffoldingReadMe.txt
# StyleCop
StyleCopReport.xml
# Files built by Visual Studio
*_i.c
*_p.c
*_h.h
*.ilk
*.meta
*.obj
*.iobj
*.pch
*.pdb
*.ipdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*_wpftmp.csproj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
# Chutzpah Test files
_Chutzpah*
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb
# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap
# Visual Studio Trace Files
*.e2e
# TFS 2012 Local Workspace
$tf/
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# AxoCover is a Code Coverage Tool
.axoCover/*
!.axoCover/settings.json
# Coverlet is a free, cross platform Code Coverage Tool
coverage*.json
coverage*.xml
coverage*.info
# Visual Studio code coverage results
*.coverage
*.coveragexml
# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*
# MightyMoose
*.mm.*
AutoTest.Net/
# Web workbench (sass)
.sass-cache/
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# Note: Comment the next line if you want to checkin your web deploy settings,
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj
# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/
# NuGet Packages
*.nupkg
# NuGet Symbol Packages
*.snupkg
# The packages folder can be ignored because of Package Restore
**/[Pp]ackages/*
# except build/, which is used as an MSBuild target.
!**/[Pp]ackages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/[Pp]ackages/repositories.config
# NuGet v3's project.json files produces more ignorable files
*.nuget.props
*.nuget.targets
# Microsoft Azure Build Output
csx/
*.build.csdef
# Microsoft Azure Emulator
ecf/
rcf/
# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
*.appx
*.appxbundle
*.appxupload
# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!?*.[Cc]ache/
# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
orleans.codegen.cs
# Including strong name files can present a security risk
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
#*.snk
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
ServiceFabricBackup/
*.rptproj.bak
# SQL Server files
*.mdf
*.ldf
*.ndf
# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
*.rptproj.rsuser
*- [Bb]ackup.rdl
*- [Bb]ackup ([0-9]).rdl
*- [Bb]ackup ([0-9][0-9]).rdl
# Microsoft Fakes
FakesAssemblies/
# GhostDoc plugin setting file
*.GhostDoc.xml
# Node.js Tools for Visual Studio
.ntvs_analysis.dat
node_modules/
# Visual Studio 6 build log
*.plg
# Visual Studio 6 workspace options file
*.opt
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions
# Paket dependency manager
.paket/paket.exe
paket-files/
# FAKE - F# Make
.fake/
# CodeRush personal settings
.cr/personal
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config
# Tabs Studio
*.tss
# Telerik's JustMock configuration file
*.jmconfig
# BizTalk build output
*.btp.cs
*.btm.cs
*.odx.cs
*.xsd.cs
# OpenCover UI analysis results
OpenCover/
# Azure Stream Analytics local run output
ASALocalRun/
# MSBuild Binary and Structured Log
*.binlog
# NVidia Nsight GPU debugger configuration file
*.nvuser
# MFractors (Xamarin productivity tool) working folder
.mfractor/
# Local History for Visual Studio
.localhistory/
# BeatPulse healthcheck temp database
healthchecksdb
# Backup folder for Package Reference Convert tool in Visual Studio 2017
MigrationBackup/
# Ionide (cross platform F# VS Code tools) working folder
.ionide/
# Fody - auto-generated XML schema
FodyWeavers.xsd
/RoundedTB/RoundedTBEmi.ico
================================================
FILE: AnalysisReport.sarif
================================================
{
"$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json",
"version": "2.1.0",
"runs": [
{
"tool": {
"driver": {
"name": "Dependency Analysis",
"semanticVersion": "0.3.261602",
"informationUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview",
"rules": [
{
"id": "UA105",
"name": "PackageToBeDeleted",
"fullDescription": {
"text": "Packages that need to be deleted in order to upgrade the project to chosen TFM"
},
"helpUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview"
},
{
"id": "UA106",
"name": "PackageToBeAdded",
"fullDescription": {
"text": "Packages that need to be added in order to upgrade the project to chosen TFM"
},
"helpUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview"
}
]
}
},
"results": [
{
"ruleId": "UA105",
"message": {
"text": "Package Microsoft.Windows.SDK.Contracts, Version=10.0.18362.2005 needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///C:/Users/Torch/source/repos/RoundedTB/RoundedTB/RoundedTB.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA105",
"message": {
"text": "Package System.Runtime.WindowsRuntime, Version=4.6.0 needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///C:/Users/Torch/source/repos/RoundedTB/RoundedTB/RoundedTB.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA105",
"message": {
"text": "Package System.Runtime.WindowsRuntime.UI.Xaml, Version=4.6.0 needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///C:/Users/Torch/source/repos/RoundedTB/RoundedTB/RoundedTB.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA105",
"message": {
"text": "Package System.ValueTuple, Version=4.5.0 needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///C:/Users/Torch/source/repos/RoundedTB/RoundedTB/RoundedTB.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.261602 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///C:/Users/Torch/source/repos/RoundedTB/RoundedTB/RoundedTB.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package Microsoft.Windows.Compatibility, Version=6.0.0 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///C:/Users/Torch/source/repos/RoundedTB/RoundedTB/RoundedTB.csproj"
},
"region": {}
}
}
]
}
],
"columnKind": "utf16CodeUnits"
},
{
"tool": {
"driver": {
"name": "API Upgradability",
"semanticVersion": "0.3.261602",
"informationUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview"
}
},
"results": [],
"columnKind": "utf16CodeUnits"
},
{
"tool": {
"driver": {
"name": "Component Analysis",
"semanticVersion": "0.3.261602",
"informationUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview"
}
},
"results": [],
"columnKind": "utf16CodeUnits"
}
]
}
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
Copyright (C)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
Copyright (C)
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
.
================================================
FILE: PackagingProject/Package.appxmanifest
================================================
RoundedTB
TorchGM
Images\StoreLogo.png
================================================
FILE: PackagingProject/RoundedTB.Package.wapproj
================================================
15.0
Debug
x86
Release
x86
Debug
x64
Release
x64
Debug
ARM
Release
ARM
Debug
ARM64
Release
ARM64
Debug
AnyCPU
Release
AnyCPU
Remote Debug
AnyCPU
Remote Debug
ARM
Remote Debug
ARM64
Remote Debug
x64
Remote Debug
x86
$(MSBuildExtensionsPath)\Microsoft\DesktopBridge\
660827eb-23be-4bd2-8a5b-355134f264d8
10.0.19041.0
10.0.17763.0
en-US
True
False
949AB122C53DAF37D8272CA0AA2350D81DDE2329
SHA256
False
True
neutral
0
..\RoundedTB\RoundedTB.csproj
True
Always
Always
Always
Always
Always
Always
Always
Always
Always
Always
Always
Always
Always
Always
Always
Designer
================================================
FILE: README.md
================================================

# RoundedTB
#### Add margins, rounded corners and segments to your taskbars!

## How do I get it?
You can download the latest version from the [release page](https://github.com/Gniang/RoundedTB/releases).
The Microsoft Store's RoundedTB is not mine. It's the [original version](https://github.com/RoundedTB/RoundedTB).
## Known issues
- Auto-hiding compatibillity. (Widnows taskbar setting)
- not working.
- Windows 10.
- Windows 10 has not been verified. Probably will no longer be supported.
- TranslucentTB compatibility.
- Rounded corners are not antialiased.
- Due to a Windows limitation. ([#4](https://github.com/torchgm/RoundedTB/issues/4))
- Dynamic mode won't hide the left side of the taskbar if fisrst started(the taskbar alignment has never been changed).
- This can be worked around by changing the alignment to Left and back to Center. ([#98](https://github.com/torchgm/RoundedTB/issues/98))
- When using dynamic mode, the taskbar may occasionally become too large, too small or not update.
- This can usually be fixed by moving a window to or from that monitor or briefly changing the taskbar alignment.
- Dynamic mode may not be released when RoundedTB is exited.
- Restarting RoundedTB doesn't help, try restarting the PC.
- The top of the taskbar is not rounded.
- Set the top margin to a larger value (30-50?) , you can adjust the appearance in that session. But it may be a different value when restarted the Windows.
## Other info
RoundedTB was created by torchgm. thanks.
https://github.com/RoundedTB/RoundedTB
torchgm says "RoundedTB is just a hobby of mine, and I'm certainly not an expert in this field, so I'm really sorry if you encounter a bug!".
me too.
If anything breaks catastrophically, press Ctrl+Shift+Esc to open Task Manager, end RoundedTB and then restart Explorer. At worst, just reboot your PC. RoundedTB makes no permanent changes (though it will run on startup if you enable it from the tray icon), so restarting should clear any issues.
================================================
FILE: RoundedTB/.editorconfig
================================================
# Rules in this file were initially inferred by Visual Studio IntelliCode from the C:\Users\Torch\source\repos\RoundedTB\RoundedTB\ codebase based on best match to current usage at 30/01/2022 A.D.
# You can modify the rules from these initially generated values to suit your own policies
# You can learn more about editorconfig here: https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference
[*.cs]
#Core editorconfig formatting - indentation
#use soft tabs (spaces) for indentation
indent_style = space
#Formatting - indentation options
#indent switch case contents.
csharp_indent_case_contents = true
#indent switch labels
csharp_indent_switch_labels = true
#Formatting - new line options
#place catch statements on a new line
csharp_new_line_before_catch = true
#place else statements on a new line
csharp_new_line_before_else = true
#require finally statements to be on a new line after the closing brace
csharp_new_line_before_finally = true
#require members of object intializers to be on separate lines
csharp_new_line_before_members_in_object_initializers = true
#require braces to be on a new line for object_collection_array_initializers, control_blocks, properties, lambdas, types, accessors, and methods (also known as "Allman" style)
csharp_new_line_before_open_brace = object_collection_array_initializers, control_blocks, properties, lambdas, types, accessors, methods
#Formatting - organize using options
#sort System.* using directives alphabetically, and place them before other usings
dotnet_sort_system_directives_first = true
#Formatting - spacing options
#require NO space between a cast and the value
csharp_space_after_cast = false
#require a space before the colon for bases or interfaces in a type declaration
csharp_space_after_colon_in_inheritance_clause = true
#require a space after a keyword in a control flow statement such as a for loop
csharp_space_after_keywords_in_control_flow_statements = true
#require a space before the colon for bases or interfaces in a type declaration
csharp_space_before_colon_in_inheritance_clause = true
#remove space within empty argument list parentheses
csharp_space_between_method_call_empty_parameter_list_parentheses = false
#remove space between method call name and opening parenthesis
csharp_space_between_method_call_name_and_opening_parenthesis = false
#do not place space characters after the opening parenthesis and before the closing parenthesis of a method call
csharp_space_between_method_call_parameter_list_parentheses = false
#remove space within empty parameter list parentheses for a method declaration
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
#place a space character after the opening parenthesis and before the closing parenthesis of a method declaration parameter list.
csharp_space_between_method_declaration_parameter_list_parentheses = false
#Formatting - wrapping options
#leave code block on single line
csharp_preserve_single_line_blocks = true
#Style - Code block preferences
#prefer curly braces even for one line of code
csharp_prefer_braces = true:suggestion
#Style - expression bodied member options
#prefer block bodies for accessors
csharp_style_expression_bodied_accessors = false:suggestion
#prefer block bodies for constructors
csharp_style_expression_bodied_constructors = false:suggestion
#prefer block bodies for methods
csharp_style_expression_bodied_methods = false:suggestion
#prefer block bodies for properties
csharp_style_expression_bodied_properties = false:suggestion
#Style - expression level options
#prefer out variables to be declared before the method call
csharp_style_inlined_variable_declaration = false:suggestion
#Style - Expression-level preferences
#prefer objects to not be initialized using object initializers
dotnet_style_object_initializer = false:suggestion
#Style - implicit and explicit types
#prefer explicit type over var in all cases, unless overridden by another code style rule
csharp_style_var_elsewhere = false:suggestion
#prefer explicit type over var to declare variables with built-in system types such as int
csharp_style_var_for_built_in_types = false:suggestion
#prefer explicit type over var when the type is already mentioned on the right-hand side of a declaration
csharp_style_var_when_type_is_apparent = false:suggestion
#Style - language keyword and framework type options
#prefer the language keyword for local variables, method parameters, and class members, instead of the type name, for types that have a keyword to represent them
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
#Style - modifier options
#prefer accessibility modifiers to be declared except for public interface members. This will currently not differ from always and will act as future proofing for if C# adds default interface methods.
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
#Style - Modifier preferences
#when this rule is set to a list of modifiers, prefer the specified ordering.
csharp_preferred_modifier_order = public,private,static,extern,sealed:suggestion
#Style - Pattern matching
#prefer pattern matching instead of is expression with type casts
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
#Style - qualification options
#prefer fields not to be prefaced with this. or Me. in Visual Basic
dotnet_style_qualification_for_field = false:suggestion
#prefer methods not to be prefaced with this. or Me. in Visual Basic
dotnet_style_qualification_for_method = false:suggestion
#prefer properties not to be prefaced with this. or Me. in Visual Basic
dotnet_style_qualification_for_property = false:suggestion
[*.{cs,vb}]
dotnet_diagnostic.CA1416.severity=silent
================================================
FILE: RoundedTB/AboutWindow.xaml
================================================
Thanks for downloading RoundedTB. Expand the following categories for more information.
• Nobody knows. Some say secrets lie amongst these builds. And bugs. Honestly, I'm pretty sure they're 90% bug. 95%. 98%. Actually the fact you're even seeing this text is probably a bug. idk tbh, i give up
REMINDER: Autohide is currently rather buggy and must be entirely disabled in Windows.
• Margin - makes the taskbar slimmer on all sides by this many logical pixels.
• Corner radius - controls the radius of the taskbar's rounded corners.
• Advanced - toggles a menu of advanced and experimental features.
• Apply - applies and saves any unset changes.
• [...] Margins - individually sets the margin for each side of the taskbar.
• Dynamic mode (Windows 11) - Dynamically adjusts the size of the taskbar depending on how many apps are open.
• Split mode (Windows 10) - allows you to resize the taskbar. Like dynamic mode, but manually adjustable; some setup is required, enable for more info.
• Show system tray - Displays the system tray in dynamic/split mode. This option can be toggled at any time by pressing Win+F2.
• Show system tray on hover - Displays the system tray in dynamic/split mode when the mouse hovers over it. This overrides the above option.
• TranslucentTB compatibility - enables compatibility with TranslucentTB. For more info, enable this option.
• Fill taskbar when maximised - Fills the taskbar when a window is maximised on that taskbar's monitor.
• Fill taskbar on alt+tab (Windows 11) - Fills taskbars when alt+tab or the Task Switcher is invoked.
• Using RoundedTB with Windows' autohide feature can result in heavy flickering, bugs, an inability to access the taskbar and isn't supported. An upcoming version of RoundedTB will introduce a custom autohide feature that will work correctly.
• Dynamic mode and split mode only work correctly when the taskbar is at the top or bottom of the monitor.
• Split mode on Windows 10 is currently only supported on the primary monitor.
• Taskbar mods other than TranslucentTB are not yet officially supported. Let me know if you run into compatibility issues with other taskbar mods/tweaks.
• When using dynamic mode, the taskbar may occasionally become too large, too small or not update. This can usually be fixed by moving a window to or from that monitor or briefly changing the taskbar alignment. These issues will be reduced in upcoming updates.
• More in-depth instructions, tips and tricks are available in the
README
.
• If you're having any issues, or just want to talk about RoundedTB, feel free to join
the official Discord server
.
• If you want to browse the source code, file an issue or suggest a feature, check out
the RoundedTB GitHub repository
.
RoundedTB is licensed under the
GNU General Public License v3.0
. By using the software, you agree to accepting the terms of this license.
================================================
FILE: RoundedTB/AboutWindow.xaml.cs
================================================
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Windows.Navigation;
using System.Diagnostics;
namespace RoundedTB
{
///
/// Interaction logic for AboutWindow.xaml
///
public partial class AboutWindow : Window
{
public AboutWindow()
{
InitializeComponent();
WPFUI.Background.Manager.Apply(WPFUI.Background.BackgroundType.Mica, this);
}
private void okButton_Click(object sender, RoutedEventArgs e)
{
Close();
}
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
{
Process.Start(e.Uri.ToString());
}
private void configButton_Click(object sender, RoutedEventArgs e)
{
Process.Start(((MainWindow)Application.Current.MainWindow).configPath);
}
private void logButton_Click(object sender, RoutedEventArgs e)
{
Process.Start(((MainWindow)Application.Current.MainWindow).logPath);
}
}
}
================================================
FILE: RoundedTB/App.config
================================================
================================================
FILE: RoundedTB/App.xaml
================================================
================================================
FILE: RoundedTB/App.xaml.cs
================================================
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace RoundedTB
{
///
/// Interaction logic for App.xaml
///
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
WPFUI.Theme.Watcher.Start();
}
}
}
================================================
FILE: RoundedTB/AppBars.cs
================================================
using System;
using System.Runtime.InteropServices;
namespace RoundedTB
{
class AppBars
{
[DllImport("shell32.dll")]
public static extern IntPtr SHAppBarMessage(UInt32 dwMessage, ref APPBARDATA pData);
public enum AppBarMessages
{
New = 0x00,
Remove = 0x01,
QueryPos = 0x02,
SetPos = 0x03,
GetState = 0x04,
GetTaskBarPos = 0x05,
Activate = 0x06,
GetAutoHideBar = 0x07,
SetAutoHideBar = 0x08,
WindowPosChanged = 0x09,
SetState = 0x0a
}
[StructLayout(LayoutKind.Sequential)]
public struct APPBARDATA
{
public UInt32 cbSize;
public IntPtr hWnd;
public UInt32 uCallbackMessage;
public UInt32 uEdge;
public LocalPInvoke.RECT rc;
public Int32 lParam;
}
public enum AppBarStates
{
AutoHide = 0x01,
AlwaysOnTop = 0x02
}
///
/// Set the Taskbar State option
///
/// AppBarState to activate
public static void SetAppbarState(IntPtr hwnd, AppBarStates option)
{
APPBARDATA msgData = new APPBARDATA();
msgData.cbSize = (UInt32)Marshal.SizeOf(msgData);
msgData.hWnd = hwnd;
msgData.lParam = (Int32)(option);
SHAppBarMessage((UInt32)AppBarMessages.SetState, ref msgData);
}
///
/// Gets the current Taskbar state
///
/// current Taskbar state
public static AppBarStates GetAppbarState(IntPtr hwnd)
{
APPBARDATA msgData = new APPBARDATA();
msgData.cbSize = (UInt32)Marshal.SizeOf(msgData);
msgData.hWnd = hwnd;
return (AppBarStates)SHAppBarMessage((UInt32)AppBarMessages.GetState, ref msgData);
}
///
/// Unregisters the taskbar as an appbar
///
public static void MakeAppbarSad(IntPtr hwnd)
{
APPBARDATA msgData = new APPBARDATA();
msgData.cbSize = (UInt32)Marshal.SizeOf(msgData);
msgData.hWnd = hwnd;
SHAppBarMessage((UInt32)AppBarMessages.Remove, ref msgData);
}
///
/// Unregisters the taskbar as an appbar
///
public static void SetAppbarRect(IntPtr hwnd, LocalPInvoke.RECT rc)
{
APPBARDATA msgData = new APPBARDATA();
msgData.cbSize = (UInt32)Marshal.SizeOf(msgData);
msgData.hWnd = hwnd;
msgData.rc = rc;
msgData.uEdge = 0x3;
SHAppBarMessage((UInt32)AppBarMessages.SetPos, ref msgData);
}
}
}
================================================
FILE: RoundedTB/Background.cs
================================================
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Text;
using System.Windows;
using System.Windows.Threading;
namespace RoundedTB
{
public class Background
{
private struct ReloadChecker
{
public bool IsReload { get; set; }
}
// Just have a reference point for the Dispatcher
public MainWindow mw;
bool redrawOverride = false;
int infrequentCount = 0;
public Background()
{
mw = (MainWindow)Application.Current.MainWindow;
}
// Main method for the BackgroundWorker - runs indefinitely
public void DoWork(object sender, DoWorkEventArgs e)
{
mw.interaction.AddLog("in bw");
BackgroundWorker worker = sender as BackgroundWorker;
while (true)
{
try
{
if (worker.CancellationPending == true)
{
mw.interaction.AddLog("cancelling");
e.Cancel = true;
break;
}
// Primary loop for the running process
else
{
// Section for running less important things without requiring an additional thread
infrequentCount++;
if (infrequentCount == 10)
{
// Check to see if settings need to be shown
List windowList = Interaction.GetTopLevelWindows();
foreach (IntPtr hwnd in windowList)
{
StringBuilder windowClass = new StringBuilder(1024);
StringBuilder windowTitle = new StringBuilder(1024);
try
{
LocalPInvoke.GetClassName(hwnd, windowClass, 1024);
LocalPInvoke.GetWindowText(hwnd, windowTitle, 1024);
if (windowClass.ToString().Contains("HwndWrapper[RoundedTB.exe") && windowTitle.ToString() == "RoundedTB_SettingsRequest")
{
mw.Dispatcher.Invoke(() =>
{
if (mw.Visibility != Visibility.Visible)
{
mw.ShowMenuItem_Click(null, null);
}
});
LocalPInvoke.SetWindowText(hwnd, "RoundedTB");
}
}
catch (Exception) { }
}
ReloadChecker checker = new();
mw.taskbarDetails?.ForEach(taskbar =>
{
if (taskbar.AppListXaml.ReloadRequired)
{
taskbar.AppListXaml.ReloadTaskbarFrameElement();
checker.IsReload = true;
}
});
// Update tray icon
mw.interaction.RefreshUiTray(isForceReset: checker.IsReload);
infrequentCount = 0;
}
// Check if the taskbar is centred, and if it is, directly update the settings; using an interim bool to avoid delaying because I'm lazy
bool isCentred = Taskbar.CheckIfCentred();
mw.activeSettings.IsCentred = isCentred;
// Work with static values to avoid some null reference exceptions
List taskbars = mw.taskbarDetails;
Types.Settings settings = mw.activeSettings;
// If the number of taskbars has changed, regenerate taskbar information
if (Taskbar.TaskbarCountOrHandleChanged(taskbars.Count, taskbars[0].TaskbarHwnd))
{
// Forcefully reset taskbars if the taskbar count or main taskbar handle has changed
taskbars.ForEach(t => t.Dispose());
taskbars = Taskbar.GenerateTaskbarInfo(mw.interaction.IsWindows11());
mw.interaction.RefreshUiTray(isForceReset: true);
Debug.WriteLine("Regenerating taskbar info");
}
for (int current = 0; current < taskbars.Count; current++)
{
if (taskbars[current].TaskbarHwnd == IntPtr.Zero || taskbars[current].AppListHwnd == IntPtr.Zero)
{
taskbars.ForEach(t => t.Dispose());
taskbars = Taskbar.GenerateTaskbarInfo(mw.interaction.IsWindows11());
mw.interaction.RefreshUiTray(isForceReset: true);
Debug.WriteLine("Regenerating taskbar info due to a missing handle");
break;
}
// Get the latest quick details of this taskbar
Types.Taskbar newTaskbar = Taskbar.GetQuickTaskbarRects(taskbars[current].TaskbarHwnd, taskbars[current].TrayHwnd, taskbars[current].AppListHwnd, taskbars[current].AppListXaml);
// If the taskbar's monitor has a maximised window, reset it so it's "filled"
if (Taskbar.TaskbarShouldBeFilled(taskbars[current].TaskbarHwnd, settings))
{
if (taskbars[current].Ignored == false)
{
Taskbar.ResetTaskbar(taskbars[current], settings);
taskbars[current].Ignored = true;
}
continue;
}
// Showhide tray on hover
if (settings.ShowSegmentsOnHover)
{
LocalPInvoke.RECT currentTrayRect = taskbars[current].TrayRect;
LocalPInvoke.RECT currentWidgetsRect = taskbars[current].TaskbarRect;
currentWidgetsRect.Right = Convert.ToInt32(currentWidgetsRect.Right - (currentWidgetsRect.Right - currentWidgetsRect.Left) + (168 * taskbars[current].ScaleFactor));
if (currentTrayRect.Left != 0)
{
LocalPInvoke.GetCursorPos(out LocalPInvoke.POINT msPt);
bool isHoveringOverTray = LocalPInvoke.PtInRect(ref currentTrayRect, msPt);
bool isHoveringOverWidgets = LocalPInvoke.PtInRect(ref currentWidgetsRect, msPt);
if (isHoveringOverTray && !settings.ShowTray)
{
settings.ShowTray = true;
taskbars[current].Ignored = true;
}
else if (!isHoveringOverTray)
{
taskbars[current].Ignored = true;
settings.ShowTray = false;
}
if (isHoveringOverWidgets && !settings.ShowWidgets)
{
settings.ShowWidgets = true;
taskbars[current].Ignored = true;
}
else if (!isHoveringOverWidgets)
{
taskbars[current].Ignored = true;
settings.ShowWidgets = false;
}
}
}
if (settings.AutoHide > 0)
{
LocalPInvoke.RECT currentTaskbarRect = taskbars[current].TaskbarRect;
LocalPInvoke.GetCursorPos(out LocalPInvoke.POINT msPt);
bool isHoveringOverTaskbar;
if (taskbars[current].TaskbarHidden)
{
currentTaskbarRect.Top = currentTaskbarRect.Bottom - 2;
isHoveringOverTaskbar = LocalPInvoke.PtInRect(ref currentTaskbarRect, msPt);
}
else
{
isHoveringOverTaskbar = LocalPInvoke.PtInRect(ref currentTaskbarRect, msPt);
}
if (isHoveringOverTaskbar)
{
Debug.WriteLine("___");
}
int animSpeed = 15;
byte taskbarOpacity = 0;
LocalPInvoke.GetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, out _, out taskbarOpacity, out _);
//Debug.WriteLine($"Taskbar opacity: {taskbarOpacity}");
if (isHoveringOverTaskbar && taskbarOpacity == 1)
{
int style = LocalPInvoke.GetWindowLong(taskbars[current].TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE).ToInt32();
if ((style & LocalPInvoke.WS_EX_TRANSPARENT) == LocalPInvoke.WS_EX_TRANSPARENT)
{
LocalPInvoke.SetWindowLong(taskbars[current].TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE, LocalPInvoke.GetWindowLong(taskbars[current].TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE).ToInt32() ^ LocalPInvoke.WS_EX_TRANSPARENT);
}
LocalPInvoke.SetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, 0, 63, LocalPInvoke.LWA_ALPHA);
System.Threading.Thread.Sleep(animSpeed);
LocalPInvoke.SetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, 0, 127, LocalPInvoke.LWA_ALPHA);
System.Threading.Thread.Sleep(animSpeed);
LocalPInvoke.SetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, 0, 191, LocalPInvoke.LWA_ALPHA);
System.Threading.Thread.Sleep(animSpeed);
LocalPInvoke.SetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, 0, 255, LocalPInvoke.LWA_ALPHA);
taskbars[current].Ignored = true;
taskbars[current].TaskbarHidden = false;
Debug.WriteLine("MouseOver TB");
}
else if (!isHoveringOverTaskbar && taskbarOpacity == 255)
{
LocalPInvoke.SetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, 0, 191, LocalPInvoke.LWA_ALPHA);
System.Threading.Thread.Sleep(animSpeed);
LocalPInvoke.SetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, 0, 127, LocalPInvoke.LWA_ALPHA);
System.Threading.Thread.Sleep(animSpeed);
LocalPInvoke.SetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, 0, 63, LocalPInvoke.LWA_ALPHA);
System.Threading.Thread.Sleep(animSpeed);
LocalPInvoke.SetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, 0, 1, LocalPInvoke.LWA_ALPHA);
int style = LocalPInvoke.GetWindowLong(taskbars[current].TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE).ToInt32();
if ((style & LocalPInvoke.WS_EX_TRANSPARENT) != LocalPInvoke.WS_EX_TRANSPARENT)
{
LocalPInvoke.SetWindowLong(taskbars[current].TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE, LocalPInvoke.GetWindowLong(taskbars[current].TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE).ToInt32() ^ LocalPInvoke.WS_EX_TRANSPARENT);
}
taskbars[current].Ignored = true;
taskbars[current].TaskbarHidden = true;
Debug.WriteLine("MouseOff TB");
}
}
else
{
int animSpeed = 15;
byte taskbarOpacity = 0;
LocalPInvoke.GetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, out _, out taskbarOpacity, out _);
if (taskbarOpacity < 255)
{
int style = LocalPInvoke.GetWindowLong(taskbars[current].TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE).ToInt32();
if ((style & LocalPInvoke.WS_EX_TRANSPARENT) == LocalPInvoke.WS_EX_TRANSPARENT)
{
LocalPInvoke.SetWindowLong(taskbars[current].TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE, LocalPInvoke.GetWindowLong(taskbars[current].TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE).ToInt32() ^ LocalPInvoke.WS_EX_TRANSPARENT);
}
LocalPInvoke.SetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, 0, 63, LocalPInvoke.LWA_ALPHA);
System.Threading.Thread.Sleep(animSpeed);
LocalPInvoke.SetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, 0, 127, LocalPInvoke.LWA_ALPHA);
System.Threading.Thread.Sleep(animSpeed);
LocalPInvoke.SetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, 0, 191, LocalPInvoke.LWA_ALPHA);
System.Threading.Thread.Sleep(animSpeed);
LocalPInvoke.SetLayeredWindowAttributes(taskbars[current].TaskbarHwnd, 0, 255, LocalPInvoke.LWA_ALPHA);
taskbars[current].Ignored = true;
taskbars[current].TaskbarHidden = false;
}
}
// If the taskbar's overall rect has changed, update it. If it's simple, just update. If it's dynamic, check it's a valid change, then update it.
if (Taskbar.TaskbarRefreshRequired(taskbars[current], newTaskbar, settings.IsDynamic) || taskbars[current].Ignored || redrawOverride)
{
Debug.WriteLine($"Refresh required on taskbar {current}");
taskbars[current].Ignored = false;
int isFullTest = newTaskbar.TrayRect.Left - newTaskbar.AppListRect.Right;
mw.interaction.AddLog($"Taskbar: {current} - AppList ends: {newTaskbar.AppListRect.Right} - Tray starts: {newTaskbar.TrayRect.Left} - Total gap: {isFullTest}");
if (!settings.IsDynamic || (isFullTest <= taskbars[current].ScaleFactor * 25 && isFullTest > 0 && newTaskbar.TrayRect.Left != 0))
{
// Add the rect changes to the temporary list of taskbars
taskbars[current].TaskbarRect = newTaskbar.TaskbarRect;
taskbars[current].AppListRect = newTaskbar.AppListRect;
taskbars[current].TrayRect = newTaskbar.TrayRect;
Taskbar.UpdateSimpleTaskbar(taskbars[current], settings);
mw.interaction.AddLog($"Updated taskbar {current} simply");
}
else
{
if (Taskbar.CheckDynamicUpdateIsValid(taskbars[current], newTaskbar))
{
// Add the rect changes to the temporary list of taskbars
taskbars[current].TaskbarRect = newTaskbar.TaskbarRect;
taskbars[current].AppListRect = newTaskbar.AppListRect;
taskbars[current].TrayRect = newTaskbar.TrayRect;
Taskbar.UpdateDynamicTaskbar(taskbars[current], settings);
mw.interaction.AddLog($"Updated taskbar {current} dynamically");
}
}
}
}
mw.taskbarDetails = taskbars;
System.Threading.Thread.Sleep(100);
}
}
catch (TypeInitializationException ex)
{
mw.interaction.AddLog(ex.Message);
mw.interaction.AddLog(ex.InnerException.Message);
throw ex;
}
}
}
}
}
================================================
FILE: RoundedTB/EnumerableExtensions.cs
================================================
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RoundedTB
{
public static class EnumerableExtensions
{
public static void ForEach(this IEnumerable src, Action action)
{
foreach (var item in src)
{
action(item);
}
}
}
}
================================================
FILE: RoundedTB/FodyWeavers.xml
================================================
================================================
FILE: RoundedTB/IAppVisibility.cs
================================================
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace RoundedTB
{
public enum MONITOR_APP_VISIBILITY
{
MAV_UNKNOWN = 0,
MAV_NO_APP_VISIBLE = 1,
MAV_APP_VISIBLE = 2
}
[ComImport, Guid("6584CE6B-7D82-49C2-89C9-C6BC02BA8C38"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IAppVisibilityEvents
{
void AppVisibilityOnMonitorChanged(IntPtr hMonitor, MONITOR_APP_VISIBILITY previousMode, MONITOR_APP_VISIBILITY currentMode);
void LauncherVisibilityChange([MarshalAs(UnmanagedType.Bool)] bool currentVisibleState);
}
[ComImport, Guid("2246EA2D-CAEA-4444-A3C4-6DE827E44313"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IAppVisibility
{
MONITOR_APP_VISIBILITY GetAppVisibilityOnMonitor(IntPtr hMonitor);
[return: MarshalAs(UnmanagedType.Bool)]
bool IsLauncherVisible();
uint Advise(IAppVisibilityEvents pCallback);
void Unadvise(uint dwCookie);
}
[ComImport, Guid("7E5FE3D9-985F-4908-91F9-EE19F9FD1514"), ClassInterface(ClassInterfaceType.None)]
public class AppVisibility { }
}
================================================
FILE: RoundedTB/Infobox.xaml
================================================
================================================
FILE: RoundedTB/Infobox.xaml.cs
================================================
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace RoundedTB
{
///
/// Interaction logic for Infobox.xaml
///
public partial class Infobox : Window
{
public Infobox()
{
InitializeComponent();
}
private void okButton_Click(object sender, RoutedEventArgs e)
{
Close();
}
}
}
================================================
FILE: RoundedTB/Interaction.cs
================================================
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Windows;
using System.Threading;
using System.Drawing;
using System.Runtime.InteropServices;
namespace RoundedTB
{
public class Interaction
{
public MainWindow mw;
string m = "";
public Interaction()
{
try
{
mw = (MainWindow)Application.Current.MainWindow;
}
catch (Exception)
{
// No idea why this was necessary but it was so it's here now. Yay. TODO - work out why this is suddenly broken and unbreak it
}
}
public Types.Settings ReadJSON()
{
string jsonSettings = File.ReadAllText(mw.configPath);
Types.Settings settings = JsonConvert.DeserializeObject(jsonSettings);
// compatible old settings
if (settings.DynamicSecondaryClockLayout == null)
{
settings.DynamicSecondaryClockLayout = new Types.SegmentSettings { CornerRadius = 7, MarginLeft = 3, MarginTop = 3, MarginRight = 3, MarginBottom = 3 };
}
return settings;
}
public bool IsWindows11()
{
Debug.WriteLine(Environment.OSVersion.Version.Build);
if (Environment.OSVersion.Version.Build >= 21996)
{
return true;
}
return false;
}
public void WriteJSON()
{
File.Create(mw.configPath).Close();
File.WriteAllText(mw.configPath, JsonConvert.SerializeObject(mw.activeSettings, Formatting.Indented));
}
public void FileSystem()
{
File.Create(mw.logPath).Close();
if (!File.Exists(mw.configPath))
{
if (mw.isWindows11)
{
mw.activeSettings = new Types.Settings()
{
SimpleTaskbarLayout = new Types.SegmentSettings { CornerRadius = 7, MarginLeft = 3, MarginTop = 3, MarginRight = 3, MarginBottom = 3 },
DynamicAppListLayout = new Types.SegmentSettings { CornerRadius = 7, MarginLeft = 3, MarginTop = 3, MarginRight = 3, MarginBottom = 3 },
DynamicTrayLayout = new Types.SegmentSettings { CornerRadius = 7, MarginLeft = 3, MarginTop = 3, MarginRight = 3, MarginBottom = 3 },
DynamicWidgetsLayout = new Types.SegmentSettings { CornerRadius = 7, MarginLeft = 3, MarginTop = 3, MarginRight = 3, MarginBottom = 3 },
DynamicSecondaryClockLayout = new Types.SegmentSettings { CornerRadius = 7, MarginLeft = 3, MarginTop = 3, MarginRight = 3, MarginBottom = 3 },
WidgetsWidth = 168,
ClockWidth = 110,
IsDynamic = false,
IsCentred = false,
IsWindows11 = true,
ShowTray = false,
CompositionCompat = false,
IsNotFirstLaunch = false,
FillOnMaximise = true,
FillOnTaskSwitch = true,
ShowSegmentsOnHover = false,
AutoHide = 0
};
}
else
{
mw.activeSettings = new Types.Settings()
{
SimpleTaskbarLayout = new Types.SegmentSettings { CornerRadius = 16, MarginLeft = 2, MarginTop = 2, MarginRight = 2, MarginBottom = 2 },
DynamicAppListLayout = new Types.SegmentSettings { CornerRadius = 16, MarginLeft = 2, MarginTop = 2, MarginRight = 2, MarginBottom = 2 },
DynamicTrayLayout = new Types.SegmentSettings { CornerRadius = 16, MarginLeft = 2, MarginTop = 2, MarginRight = 2, MarginBottom = 2 },
DynamicWidgetsLayout = new Types.SegmentSettings { CornerRadius = 16, MarginLeft = 2, MarginTop = 2, MarginRight = 2, MarginBottom = 2 },
DynamicSecondaryClockLayout = new Types.SegmentSettings { CornerRadius = 16, MarginLeft = 2, MarginTop = 2, MarginRight = 2, MarginBottom = 2 },
WidgetsWidth = 168,
ClockWidth = 110,
IsDynamic = false,
IsCentred = false,
IsWindows11 = false,
ShowTray = false,
CompositionCompat = false,
IsNotFirstLaunch = false,
FillOnMaximise = true,
FillOnTaskSwitch = false,
ShowSegmentsOnHover = false,
AutoHide = 0
};
}
WriteJSON(); // butts - Missy Quarry, 2020
}
if (File.ReadAllText(mw.configPath) == "" || File.ReadAllText(mw.configPath) == null)
{
WriteJSON(); // Initialises empty file
}
}
public static bool SetWorkspace(LocalPInvoke.RECT rect)
{
bool result = LocalPInvoke.SystemParametersInfo(LocalPInvoke.SPI_SETWORKAREA, 0, ref rect, LocalPInvoke.SPIF_change);
if (!result)
{
// Get error
Debug.WriteLine("Error setting work area: " + Marshal.GetLastWin32Error().ToString());
}
return result;
}
public void AddLog(string message)
{
//m = $"[{DateTime.Now}] {message}\n";
//File.AppendAllText(mw.logPath, m);
}
public static bool IsTranslucentTBRunning()
{
Mutex mutex = null;
try
{
return Mutex.TryOpenExisting("344635E9-9AE4-4E60-B128-D53E25AB70A7", out mutex);
}
finally
{
mutex?.Dispose();
}
}
// Request that TranslucentTB forefully refesh the taskbar
public static IntPtr UpdateTranslucentTB(IntPtr taskbarHwnd)
{
return LocalPInvoke.SendMessage(LocalPInvoke.FindWindow("TTB_WorkerWindow", "TTB_WorkerWindow"), LocalPInvoke.RegisterWindowMessage("TTB_ForceRefreshTaskbar"), 0, taskbarHwnd);
}
// Attempt to forcefully refresh the taskbar
public static void UpdateLegacyTB(IntPtr taskbarHwnd)
{
const int WM_DWMCOMPOSITIONCHANGED = 789;
LocalPInvoke.SendMessage(taskbarHwnd, WM_DWMCOMPOSITIONCHANGED, 1, IntPtr.Zero);
}
///
/// Calculates whether or not an integer is odd or even.
///
///
/// The integer to be checked for oddness.
///
///
/// A nullable bool, which represents if the provided integer is odd. If the provided integer is neither even nor odd, then returns null.
///
public bool? IsOdd(int input)
{
// The following section declares and initialises the required variables for the caculation.
decimal comparison = input / 2; // A decimal, representing approximately half of the user's input.
int check = Convert.ToInt32(comparison) * 2; // An integer-representation of the user's input value.
// The following section tests for oddness by looking for differences in the prior-initialised values.
if (check == input) // Checks if the "check" value is equal to the input.
{
return false; // Return false to indicate the value is not odd.
}
else if (check != input) // Repeat the above check in the event that quantum tunnelling has resulted in a variable changing.
{
return true; // Return true to indicate the value is odd.
}
return null; // Finally, return null to indicate that the provided number is neither odd nor even - not currently required, added for future-proofing in the event the concept of mathematics changes significantly enough to warrant it.
// (this is a joke to annoy sylly)
}
public IntPtr HwndHook(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
{
const int WM_HOTKEY = 0x0312;
switch (msg)
{
case WM_HOTKEY:
Debug.WriteLine(msg);
switch (wParam.ToInt32())
{
case 9000:
int vkey = ((int)lParam >> 16) & 0xFFFF;
Debug.WriteLine(vkey);
if (vkey == 0x71)
{
if (mw.showTrayCheckBox.IsChecked == true)
{
mw.showTrayCheckBox.IsChecked = false;
}
else
{
mw.showTrayCheckBox.IsChecked = true;
}
mw.ApplyButton_Click(null, null);
}
handled = true;
break;
}
break;
}
return IntPtr.Zero;
}
public static bool IsAutoHideEnabled()
{
return Math.Abs(SystemParameters.PrimaryScreenHeight - SystemParameters.WorkArea.Height) > 0;
}
public bool IsTaskbarVisibleOnMonitor(LocalPInvoke.RECT tbRectP, LocalPInvoke.RECT monitorRectP)
{
Rectangle tbRect = new Rectangle(tbRectP.Left + 3, tbRectP.Top + 3, tbRectP.Right - tbRectP.Left - 3, tbRectP.Bottom - tbRectP.Top - 3);
Rectangle monitorRect = new Rectangle(monitorRectP.Left, monitorRectP.Top, monitorRectP.Right - monitorRectP.Left, monitorRectP.Bottom - monitorRectP.Top);
return tbRect.IntersectsWith(monitorRect);
}
public delegate bool CallBack(int hwnd, int lParam);
public delegate bool EnumWindowsProc(IntPtr hwnd, IntPtr lParam);
public static List GetTopLevelWindows()
{
List AllActiveHandles = new List();
GCHandle listHandle = GCHandle.Alloc(AllActiveHandles);
try
{
EnumWindowsProc tlProc = new EnumWindowsProc(EnumWindow);
LocalPInvoke.EnumWindows(tlProc, GCHandle.ToIntPtr(listHandle));
}
finally
{
if (listHandle.IsAllocated)
{
listHandle.Free();
}
}
return AllActiveHandles;
}
private static bool EnumWindow(IntPtr handle, IntPtr pointer)
{
GCHandle gch = GCHandle.FromIntPtr(pointer);
if (!(gch.Target is List list))
{
throw new InvalidCastException("GCHandle Target could not be cast as List");
}
list.Add(handle);
return true;
}
public static bool TaskbarOnMonitorWithMaximisedWindow(IntPtr taskbarHwnd)
{
return true;
}
public void RefreshUiTray(bool isForceReset)
{
// When the taskbar changes, there may be not show tray icons. so need for a redraw.
mw.Dispatcher.Invoke(() =>
{
try
{
mw.TrayIconCheck(isForceReset);
}
catch (Exception)
{
// TODO: write log
// GUI refresh, gracefully handle errors.
}
});
}
public enum TaskbarPosition
{
Unknown = -1,
Left,
Top,
Right,
Bottom,
}
public sealed class Taskbar
{
public Rectangle Bounds
{
get;
private set;
}
public TaskbarPosition Position
{
get;
private set;
}
public System.Drawing.Point Location
{
get
{
return Bounds.Location;
}
}
public System.Drawing.Size Size
{
get
{
return Bounds.Size;
}
}
//Always returns false under Windows 7
public bool AlwaysOnTop
{
get;
private set;
}
public bool AutoHide
{
get;
private set;
}
public Taskbar(IntPtr taskbarHandle)
{
LocalPInvoke.APPBARDATA data = new LocalPInvoke.APPBARDATA();
data.cbSize = (uint)Marshal.SizeOf(typeof(LocalPInvoke.APPBARDATA));
data.hWnd = taskbarHandle;
IntPtr result = LocalPInvoke.SHAppBarMessage(LocalPInvoke.ABM.GetTaskbarPos, ref data);
Position = (TaskbarPosition)data.uEdge;
Bounds = Rectangle.FromLTRB(data.rc.Left, data.rc.Top, data.rc.Right, data.rc.Bottom);
data.cbSize = (uint)Marshal.SizeOf(typeof(LocalPInvoke.APPBARDATA));
result = LocalPInvoke.SHAppBarMessage(LocalPInvoke.ABM.GetState, ref data);
int state = result.ToInt32();
AlwaysOnTop = (state & LocalPInvoke.ABS.AlwaysOnTop) == LocalPInvoke.ABS.AlwaysOnTop;
AutoHide = (state & LocalPInvoke.ABS.Autohide) == LocalPInvoke.ABS.Autohide;
}
}
}
}
================================================
FILE: RoundedTB/LocalPInvoke.cs
================================================
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Text;
namespace RoundedTB
{
public class LocalPInvoke
{
[DllImport("user32.dll", SetLastError = true)]
public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X, int Y, int cx, int cy, SetWindowPosFlags uFlags);
[DllImport("user32.dll")]
public static extern bool RegisterHotKey(IntPtr hWnd, int id, int fsModifiers, int vk);
[DllImport("user32.dll")]
public static extern bool UnregisterHotKey(IntPtr hWnd, int id);
[DllImport("user32.dll")]
public static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
[DllImport("user32.dll")]
public static extern bool RedrawWindow(IntPtr hWnd, IntPtr lprcUpdate, IntPtr hrgnUpdate, RedrawWindowFlags flags);
[DllImport("user32.dll", CharSet = CharSet.Auto)]
public static extern IntPtr SendMessage(IntPtr hWnd, int Msg, int wParam, IntPtr lParam);
[DllImport("user32.dll")]
public static extern bool PtInRect(ref RECT lprc, POINT pt);
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool IsWindow(IntPtr hWnd);
[DllImport("user32.dll")]
public static extern int GetWindowRgn(IntPtr hWnd, out IntPtr hRgn);
[DllImport("user32.dll")]
public static extern int SetWindowRgn(IntPtr hWnd, IntPtr hRgn, bool bRedraw);
[DllImport("gdi32.dll")]
public static extern IntPtr CreateRoundRectRgn(int x1, int y1, int x2, int y2, int w, int h);
[DllImport("gdi32.dll")]
public static extern IntPtr CreateRectRgn(int x1, int y1, int x2, int y2);
[DllImport("user32.dll")]
public static extern IntPtr FindWindowExA(IntPtr hWndParent, IntPtr hWndChildAfter, string lpszClass, string lpszWindow);
[DllImport("user32.dll")]
public static extern int GetDpiForWindow(IntPtr hwnd);
[DllImport("user32.dll")]
public static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);
[DllImport("user32.dll")]
public static extern IntPtr MonitorFromWindow(IntPtr hwnd, uint dwFlags);
[DllImport("user32.dll")]
public static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool GetWindowRect(HandleRef hWnd, out RECT lpRect);
[DllImport("gdi32.dll")]
public static extern int CombineRgn(IntPtr hrgnDest, IntPtr hrgnSrc1, IntPtr hrgnSrc2, int fnCombineMode);
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern int RegisterWindowMessage(string lpString);
[DllImport("shell32.dll", SetLastError = true)]
public static extern IntPtr SHAppBarMessage(ABM dwMessage, [In] ref APPBARDATA pData);
[DllImport("user32.dll", SetLastError = true)]
public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool GetCursorPos(out POINT lpPoint);
[DllImport("user32.dll")]
public static extern int ShowWindow(int hwnd, int command);
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool SystemParametersInfo(int uiAction, int uiParam, ref RECT pvParam, int fWinIni);
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool IsWindowVisible(IntPtr hWnd);
[DllImport("dwmapi.dll")]
public static extern int DwmGetWindowAttribute(IntPtr hwnd, DWMWINDOWATTRIBUTE dwAttribute, out bool pvAttribute, int cbAttribute);
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool EnumWindows(Interaction.EnumWindowsProc lpEnumFunc, IntPtr lParam);
[DllImport("user32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool GetWindowPlacement(IntPtr hWnd, ref WINDOWPLACEMENT lpwndpl);
[DllImport("user32.dll", SetLastError = true, EntryPoint = "GetClassNameW", CharSet = CharSet.Unicode)]
public static extern int GetClassName(IntPtr hWnd, StringBuilder lpClassName, int nMaxCount);
[DllImport("user32.dll")]
public static extern IntPtr WindowFromPoint(POINT p);
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
public static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);
[DllImport("user32.dll")]
public static extern bool SetForegroundWindow(IntPtr hWnd);
[DllImport("user32.dll")]
public static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);
[DllImport("user32.dll")]
public static extern bool IsIconic(IntPtr hWnd);
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern bool SetWindowText(IntPtr hwnd, string lpString);
[DllImport("shell32.dll")]
public static extern IntPtr SHAppBarMessage(uint dwMessage, [In] ref APPBARDATA pData);
[DllImport("user32.dll")]
public static extern bool SetLayeredWindowAttributes(IntPtr hwnd, uint crKey, byte bAlpha, uint dwFlags);
[DllImport("user32.dll")]
public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
[DllImport("user32.dll")]
public static extern IntPtr GetWindowLong(IntPtr hWnd, int nIndex);
[DllImport("user32.dll", SetLastError = true)]
public static extern bool GetLayeredWindowAttributes(IntPtr hwnd, out uint crKey, out byte bAlpha, out uint dwFlags);
[DllImport("gdi32.dll")]
public static extern bool DeleteObject(IntPtr hObject);
public const int GWL_EXSTYLE = -20;
public const int WS_EX_LAYERED = 0x80000;
public const int WS_EX_TRANSPARENT = 0x00000020;
public const int LWA_ALPHA = 0x2;
public const int LWA_COLORKEY = 0x1;
public enum AppBarStates
{
AutoHide = 0x01,
AlwaysOnTop = 0x02
}
public enum DWMWINDOWATTRIBUTE : uint
{
NCRenderingEnabled = 1,
NCRenderingPolicy,
TransitionsForceDisabled,
AllowNCPaint,
CaptionButtonBounds,
NonClientRtlLayout,
ForceIconicRepresentation,
Flip3DPolicy,
ExtendedFrameBounds,
HasIconicBitmap,
DisallowPeek,
ExcludedFromPeek,
Cloak,
Cloaked,
FreezeRepresentation
}
public enum ShowState : int
{
SW_HIDE = 0,
SW_SHOWNORMAL = 1,
SW_NORMAL = 1,
SW_SHOWMINIMIZED = 2,
SW_SHOWMAXIMIZED = 3,
SW_MAXIMIZE = 3,
SW_SHOWNOACTIVATE = 4,
SW_SHOW = 5,
SW_MINIMIZE = 6,
SW_SHOWMINNOACTIVE = 7,
SW_SHOWNA = 8,
SW_RESTORE = 9,
SW_SHOWDEFAULT = 10,
SW_FORCEMINIMIZE = 11,
SW_MAX = 11
}
public const int SPIF_SENDWININICHANGE = 2;
public const int SPIF_UPDATEINIFILE = 1;
public const int SPIF_change = SPIF_UPDATEINIFILE | SPIF_SENDWININICHANGE;
public const int SPI_SETWORKAREA = 47;
public const int SPI_GETWORKAREA = 48;
public const int SW_HIDE = 0;
public const int SW_SHOW = 1;
public const int SW_SHOWNORMAL = 1;
public const int SW_SHOWMINIMIZED = 2;
public const int SW_SHOWMAXIMIZED = 3;
public const int SW_SHOWNOACTIVATE = 4;
public const int SW_RESTORE = 9;
public const int SW_SHOWDEFAULT = 10;
public struct POINT
{
public int x;
public int y;
}
[StructLayout(LayoutKind.Sequential)]
public struct RECT
{
public int Left;
public int Top;
public int Right;
public int Bottom;
}
[StructLayout(LayoutKind.Sequential)]
public struct APPBARDATA
{
public uint cbSize;
public IntPtr hWnd;
public uint uCallbackMessage;
public ABE uEdge;
public RECT rc;
public int lParam;
}
public enum ABM : uint
{
New = 0x00000000,
Remove = 0x00000001,
QueryPos = 0x00000002,
SetPos = 0x00000003,
GetState = 0x00000004,
GetTaskbarPos = 0x00000005,
Activate = 0x00000006,
GetAutoHideBar = 0x00000007,
SetAutoHideBar = 0x00000008,
WindowPosChanged = 0x00000009,
SetState = 0x0000000A,
}
public enum ABE : uint
{
Left = 0,
Top = 1,
Right = 2,
Bottom = 3
}
public static class ABS
{
public const int Autohide = 0x0000001;
public const int AlwaysOnTop = 0x0000002;
}
///
/// Contains information about the placement of a window on the screen.
///
[Serializable]
[StructLayout(LayoutKind.Sequential)]
public struct WINDOWPLACEMENT
{
///
/// The length of the structure, in bytes. Before calling the GetWindowPlacement or SetWindowPlacement functions, set this member to sizeof(WINDOWPLACEMENT).
///
/// GetWindowPlacement and SetWindowPlacement fail if this member is not set correctly.
///
///
public int Length;
///
/// Specifies flags that control the position of the minimized window and the method by which the window is restored.
///
public int Flags;
///
/// The current show state of the window.
///
public ShowWindowCommands ShowCmd;
///
/// The coordinates of the window's upper-left corner when the window is minimized.
///
public POINT MinPosition;
///
/// The coordinates of the window's upper-left corner when the window is maximized.
///
public POINT MaxPosition;
///
/// The window's coordinates when the window is in the restored position.
///
public RECT NormalPosition;
///
/// Gets the default (empty) value.
///
public static WINDOWPLACEMENT Default
{
get
{
WINDOWPLACEMENT result = new WINDOWPLACEMENT();
result.Length = Marshal.SizeOf(result);
return result;
}
}
}
public enum ShowWindowCommands
{
///
/// Hides the window and activates another window.
///
Hide = 0,
///
/// Activates and displays a window. If the window is minimized or
/// maximized, the system restores it to its original size and position.
/// An application should specify this flag when displaying the window
/// for the first time.
///
Normal = 1,
///
/// Activates the window and displays it as a minimized window.
///
ShowMinimized = 2,
///
/// Maximizes the specified window.
///
Maximize = 3, // is this the right value?
///
/// Activates the window and displays it as a maximized window.
///
ShowMaximized = 3,
///
/// Displays a window in its most recent size and position. This value
/// is similar to , except
/// the window is not activated.
///
ShowNoActivate = 4,
///
/// Activates the window and displays it in its current size and position.
///
Show = 5,
///
/// Minimizes the specified window and activates the next top-level
/// window in the Z order.
///
Minimize = 6,
///
/// Displays the window as a minimized window. This value is similar to
/// , except the
/// window is not activated.
///
ShowMinNoActive = 7,
///
/// Displays the window in its current size and position. This value is
/// similar to , except the
/// window is not activated.
///
ShowNA = 8,
///
/// Activates and displays the window. If the window is minimized or
/// maximized, the system restores it to its original size and position.
/// An application should specify this flag when restoring a minimized window.
///
Restore = 9,
///
/// Sets the show state based on the SW_* value specified in the
/// STARTUPINFO structure passed to the CreateProcess function by the
/// program that started the application.
///
ShowDefault = 10,
///
/// Windows 2000/XP: Minimizes a window, even if the thread
/// that owns the window is not responding. This flag should only be
/// used when minimizing windows from a different thread.
///
ForceMinimize = 11
}
[Flags()]
public enum RedrawWindowFlags : uint
{
///
/// Invalidates the rectangle or region that you specify in lprcUpdate or hrgnUpdate.
/// You can set only one of these parameters to a non-NULL value. If both are NULL, RDW_INVALIDATE invalidates the entire window.
///
Invalidate = 0x1,
/// Causes the OS to post a WM_PAINT message to the window regardless of whether a portion of the window is invalid.
InternalPaint = 0x2,
///
/// Causes the window to receive a WM_ERASEBKGND message when the window is repainted.
/// Specify this value in combination with the RDW_INVALIDATE value; otherwise, RDW_ERASE has no effect.
///
Erase = 0x4,
///
/// Validates the rectangle or region that you specify in lprcUpdate or hrgnUpdate.
/// You can set only one of these parameters to a non-NULL value. If both are NULL, RDW_VALIDATE validates the entire window.
/// This value does not affect internal WM_PAINT messages.
///
Validate = 0x8,
NoInternalPaint = 0x10,
/// Suppresses any pending WM_ERASEBKGND messages.
NoErase = 0x20,
/// Excludes child windows, if any, from the repainting operation.
NoChildren = 0x40,
/// Includes child windows, if any, in the repainting operation.
AllChildren = 0x80,
/// Causes the affected windows, which you specify by setting the RDW_ALLCHILDREN and RDW_NOCHILDREN values, to receive WM_ERASEBKGND and WM_PAINT messages before the RedrawWindow returns, if necessary.
UpdateNow = 0x100,
///
/// Causes the affected windows, which you specify by setting the RDW_ALLCHILDREN and RDW_NOCHILDREN values, to receive WM_ERASEBKGND messages before RedrawWindow returns, if necessary.
/// The affected windows receive WM_PAINT messages at the ordinary time.
///
EraseNow = 0x200,
Frame = 0x400,
NoFrame = 0x800
}
[Flags()]
public enum SetWindowPosFlags : uint
{
/// If the calling thread and the thread that owns the window are attached to different input queues,
/// the system posts the request to the thread that owns the window. This prevents the calling thread from
/// blocking its execution while other threads process the request.
/// SWP_ASYNCWINDOWPOS
AsynchronousWindowPosition = 0x4000,
/// Prevents generation of the WM_SYNCPAINT message.
/// SWP_DEFERERASE
DeferErase = 0x2000,
/// Draws a frame (defined in the window's class description) around the window.
/// SWP_DRAWFRAME
DrawFrame = 0x0020,
/// Applies new frame styles set using the SetWindowLong function. Sends a WM_NCCALCSIZE message to
/// the window, even if the window's size is not being changed. If this flag is not specified, WM_NCCALCSIZE
/// is sent only when the window's size is being changed.
/// SWP_FRAMECHANGED
FrameChanged = 0x0020,
/// Hides the window.
/// SWP_HIDEWINDOW
HideWindow = 0x0080,
/// Does not activate the window. If this flag is not set, the window is activated and moved to the
/// top of either the topmost or non-topmost group (depending on the setting of the hWndInsertAfter
/// parameter).
/// SWP_NOACTIVATE
DoNotActivate = 0x0010,
/// Discards the entire contents of the client area. If this flag is not specified, the valid
/// contents of the client area are saved and copied back into the client area after the window is sized or
/// repositioned.
/// SWP_NOCOPYBITS
DoNotCopyBits = 0x0100,
/// Retains the current position (ignores X and Y parameters).
/// SWP_NOMOVE
IgnoreMove = 0x0002,
/// Does not change the owner window's position in the Z order.
/// SWP_NOOWNERZORDER
DoNotChangeOwnerZOrder = 0x0200,
/// Does not redraw changes. If this flag is set, no repainting of any kind occurs. This applies to
/// the client area, the nonclient area (including the title bar and scroll bars), and any part of the parent
/// window uncovered as a result of the window being moved. When this flag is set, the application must
/// explicitly invalidate or redraw any parts of the window and parent window that need redrawing.
/// SWP_NOREDRAW
DoNotRedraw = 0x0008,
/// Same as the SWP_NOOWNERZORDER flag.
/// SWP_NOREPOSITION
DoNotReposition = 0x0200,
/// Prevents the window from receiving the WM_WINDOWPOSCHANGING message.
/// SWP_NOSENDCHANGING
DoNotSendChangingEvent = 0x0400,
/// Retains the current size (ignores the cx and cy parameters).
/// SWP_NOSIZE
IgnoreResize = 0x0001,
/// Retains the current Z order (ignores the hWndInsertAfter parameter).
/// SWP_NOZORDER
IgnoreZOrder = 0x0004,
/// Displays the window.
/// SWP_SHOWWINDOW
ShowWindow = 0x0040,
}
// mystery
[DllImport("user32.dll")]
public static extern int SetWindowCompositionAttribute(IntPtr hwnd, ref WindowCompositionAttributeData data);
[StructLayout(LayoutKind.Sequential)]
public struct WindowCompositionAttributeData
{
public WindowCompositionAttribute Attribute;
public IntPtr Data;
public int SizeOfData;
}
public enum WindowCompositionAttribute
{
WCA_ACCENT_POLICY = 19
}
public enum AccentState
{
ACCENT_DISABLED = 0,
ACCENT_ENABLE_BLURBEHIND = 3,
ACCENT_ENABLE_ACRYLICBLURBEHIND = 4
}
[StructLayout(LayoutKind.Sequential)]
public struct AccentPolicy
{
public AccentState AccentState;
public int AccentFlags;
public int GradientColor;
public int AnimationId;
}
}
}
================================================
FILE: RoundedTB/MainWindow.xaml
================================================
📅
📰
🕑
Always show
Always hide
[unavailable]
================================================
FILE: RoundedTB/MainWindow.xaml.cs
================================================
using IWshRuntimeLibrary;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Runtime.InteropServices;
using System.Windows;
using System.Reflection;
using System.Windows.Threading;
using System.Windows.Interop;
using DesktopBridge;
using System.Threading.Tasks;
using Windows.ApplicationModel;
using System.Diagnostics;
using Microsoft.Win32;
using System.Text;
using WPFUI;
using System.Windows.Media;
using System.Linq;
using System.Windows.Controls;
namespace RoundedTB
{
///
/// Interaction logic for MainWindow.xaml
///
/// Many thanks to
/// - FloatingMilkshake
/// - cardin
/// - cleverActon0126
/// for your gracious donations! 💖
///
///
public partial class MainWindow : Window
{
public bool isWindows11;
public List taskbarDetails = new List();
public bool shouldReallyDieNoReally = false;
public string configPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "rtb.json");
public string logPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "rtb.log");
public Types.Settings activeSettings = new Types.Settings();
public BackgroundWorker taskbarThread = new BackgroundWorker();
public IntPtr hwndDesktopButton = IntPtr.Zero;
public int lastDynDistance = 0;
public int numberToForceRefresh = 0;
public bool isCentred = false;
public bool isAlreadyRunning = false;
public Background background;
public Interaction interaction;
private HwndSource source;
public int selectedSegment = 0; // 0 = Simple, 1 = AppList, 2 = Tray, 3 = Widgets
///
/// Versions:
/// -1: Canary
/// 0: R3.0
/// 1: P3.1B
/// 2: R3.1
/// 3: R4
///
public int version = -1;
private VisiblityControlManager rectStands;
record VisiblityControlSet(WPFUI.Controls.Button KeyControl, IList FollowingControls);
record VisiblityControlManager(VisiblityControlSet CenterBar, VisiblityControlSet TaskTray, VisiblityControlSet Widgets, VisiblityControlSet Clock)
{
public IReadOnlyList All => new[] { CenterBar, TaskTray, Widgets, Clock };
public IReadOnlyList AllWithoutCenterBar => new[] { TaskTray, Widgets, Clock };
public VisiblityControlSet At(int no) => All[no - 1];
internal void Focus(VisiblityControlSet set)
{
set.KeyControl.Appearance = WPFUI.Common.Appearance.Primary;
foreach (var c in set.FollowingControls)
{
c.Visibility = Visibility.Visible;
}
All.Except(new[] { set }).ForEach(x =>
{
x.KeyControl.Appearance = WPFUI.Common.Appearance.Secondary;
foreach (var c in x.FollowingControls)
{
c.Visibility = Visibility.Hidden;
}
});
}
}
public MainWindow()
{
WPFUI.Background.Manager.Apply(WPFUI.Background.BackgroundType.Mica, this);
InitializeComponent();
rectStands = new(
new VisiblityControlSet(taskbarRectStandIn, new[] { dynamicCheckBox }),
new VisiblityControlSet(trayRectStandIn, new[] { showTrayCheckBox }),
new VisiblityControlSet(widgetsRectStandIn, new Control[] { showWidgetsCheckBox, widgetWidthInput, widgetWidthLabel }),
new VisiblityControlSet(clockRectStandIn, new Control[] { showClockCheckBox, clockWidthInput, clockWidthLabel })
);
// Check OS build, as behaviours rather-annoyingly differ between Windows 11 and Windows 10
RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion");
var buildNumber = registryKey.GetValue("CurrentBuild").ToString();
if (Convert.ToInt32(buildNumber) >= 21996)
{
isWindows11 = true;
}
else
{
isWindows11 = false;
activeSettings.IsWindows11 = false;
dynamicCheckBox.Content = "Split mode";
fillAltTabCheckBox.Content = "[Unavailable]";
}
// Initialise functions
background = new Background();
interaction = new Interaction();
// Check if RoundedTB is already running, and if it is, do nothing.
Process[] matchingProcesses = Process.GetProcessesByName(Process.GetCurrentProcess().ProcessName);
if (matchingProcesses.Length > 1)
{
List windowList = Interaction.GetTopLevelWindows();
foreach (IntPtr hwnd in windowList)
{
StringBuilder windowClass = new StringBuilder(1024);
StringBuilder windowTitle = new StringBuilder(1024);
try
{
LocalPInvoke.GetClassName(hwnd, windowClass, 1024);
LocalPInvoke.GetWindowText(hwnd, windowTitle, 1024);
if (windowClass.ToString().Contains("HwndWrapper[RoundedTB.exe") && windowTitle.ToString() == "RoundedTB")
{
LocalPInvoke.SetWindowText(hwnd, "RoundedTB_SettingsRequest");
}
}
catch (Exception) { }
}
shouldReallyDieNoReally = true;
isAlreadyRunning = true;
Close();
return;
}
TrayIconCheck(isForceReset:true);
if (IsRunningAsUWP())
{
#pragma warning disable CS4014
StartupInit(true);
configPath = Path.Combine(Windows.Storage.ApplicationData.Current.RoamingFolder.Path, "rtb.json");
logPath = Path.Combine(Windows.Storage.ApplicationData.Current.RoamingFolder.Path, "rtb.log");
}
if (System.IO.File.Exists(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Startup), "RoundedTB.lnk")) && !IsRunningAsUWP())
{
StartupCheckBox.IsChecked = true;
ShowMenuItem.Header = "Show RoundedTB";
}
taskbarThread.WorkerSupportsCancellation = true;
taskbarThread.WorkerReportsProgress = true;
taskbarThread.DoWork += background.DoWork;
// Load settings into memory/UI
interaction.FileSystem();
if (!IsRunningAsUWP())
{
interaction.AddLog($"RoundedTB started!");
}
else
{
interaction.AddLog($"RoundedTB started in UWP mode!");
}
activeSettings = interaction.ReadJSON();
if (isWindows11)
{
activeSettings.IsWindows11 = true;
}
else
{
activeSettings.IsWindows11 = false;
}
// Default settings
if (activeSettings == null)
{
if (isWindows11) // Default settings for Windows 11
{
activeSettings = new Types.Settings()
{
SimpleTaskbarLayout = new Types.SegmentSettings { CornerRadius = 7, MarginLeft = 3, MarginTop = 3, MarginRight = 3, MarginBottom = 3 },
DynamicAppListLayout = new Types.SegmentSettings { CornerRadius = 7, MarginLeft = 3, MarginTop = 3, MarginRight = 3, MarginBottom = 3 },
DynamicTrayLayout = new Types.SegmentSettings { CornerRadius = 7, MarginLeft = 3, MarginTop = 3, MarginRight = 3, MarginBottom = 3 },
DynamicWidgetsLayout = new Types.SegmentSettings { CornerRadius = 7, MarginLeft = 3, MarginTop = 3, MarginRight = 3, MarginBottom = 3 },
WidgetsWidth = 168,
ClockWidth = 110,
IsDynamic = false,
IsCentred = false,
IsWindows11 = true,
ShowTray = false,
ShowWidgets = false,
ShowSecondaryClock = false,
CompositionCompat = false,
IsNotFirstLaunch = false,
FillOnMaximise = true,
FillOnTaskSwitch = true,
ShowSegmentsOnHover = false,
AutoHide = 0
};
}
else // Default settings for Windows 10
{
activeSettings = new Types.Settings()
{
SimpleTaskbarLayout = new Types.SegmentSettings { CornerRadius = 16, MarginLeft = 2, MarginTop = 2, MarginRight = 2, MarginBottom = 2 },
DynamicAppListLayout = new Types.SegmentSettings { CornerRadius = 16, MarginLeft = 2, MarginTop = 2, MarginRight = 2, MarginBottom = 2 },
DynamicTrayLayout = new Types.SegmentSettings { CornerRadius = 16, MarginLeft = 2, MarginTop = 2, MarginRight = 2, MarginBottom = 2 },
DynamicWidgetsLayout = new Types.SegmentSettings { CornerRadius = 16, MarginLeft = 2, MarginTop = 2, MarginRight = 2, MarginBottom = 2 },
WidgetsWidth = 168,
ClockWidth = 110,
IsDynamic = false,
IsCentred = false,
IsWindows11 = false,
ShowTray = false,
ShowWidgets = false,
ShowSecondaryClock = false,
CompositionCompat = false,
IsNotFirstLaunch = false,
FillOnMaximise = true,
FillOnTaskSwitch = false,
ShowSegmentsOnHover = false,
AutoHide = 0
};
}
}
if (version != activeSettings.Version && version != -1)
{
activeSettings.IsNotFirstLaunch = false;
}
activeSettings.Version = version;
interaction.AddLog($"Settings loaded:");
interaction.AddLog(
$"SimpleTaskbarLayout: {activeSettings.SimpleTaskbarLayout}\n" +
$"DynamicAppListLayout: {activeSettings.DynamicAppListLayout}\n" +
$"DynamicTrayLayout: {activeSettings.DynamicTrayLayout}\n" +
$"DynamicWidgetsLayout: {activeSettings.DynamicWidgetsLayout}\n" +
$"DynamicSecondaryClockLayout: {activeSettings.DynamicSecondaryClockLayout}\n" +
$"IsDynamic: {activeSettings.IsDynamic}\n" +
$"IsCentred: {activeSettings.IsCentred}\n" +
$"ShowTray: {activeSettings.ShowTray}\n" +
$"ShowWidgets: {activeSettings.ShowWidgets}\n" +
$"ShowSecondaryClock: {activeSettings.ShowSecondaryClock}\n" +
$"CompositionCompat: {activeSettings.CompositionCompat}\n" +
$"IsNotFirstLaunch: {activeSettings.IsNotFirstLaunch}\n" +
$"FillOnMaximise: {activeSettings.FillOnMaximise}\n" +
$"FillOnTaskSwitch: {activeSettings.FillOnTaskSwitch}\n" +
$"ShowTrayOnHover: {activeSettings.ShowSegmentsOnHover}\n"
);
// Checks if advanced margins are configured
if (activeSettings.IsDynamic)
{
cornerRadiusInput.Text = activeSettings.DynamicAppListLayout.CornerRadius.ToString();
cornerRadiusSlider.Value = activeSettings.DynamicAppListLayout.CornerRadius;
mTopInput.Text = activeSettings.DynamicAppListLayout.MarginTop.ToString();
mLeftInput.Text = activeSettings.DynamicAppListLayout.MarginLeft.ToString();
mBottomInput.Text = activeSettings.DynamicAppListLayout.MarginBottom.ToString();
mRightInput.Text = activeSettings.DynamicAppListLayout.MarginRight.ToString();
selectedSegment = 1;
}
else
{
cornerRadiusInput.Text = activeSettings.SimpleTaskbarLayout.CornerRadius.ToString();
cornerRadiusSlider.Value = activeSettings.SimpleTaskbarLayout.CornerRadius;
mTopInput.Text = activeSettings.SimpleTaskbarLayout.MarginTop.ToString();
mLeftInput.Text = activeSettings.SimpleTaskbarLayout.MarginLeft.ToString();
mBottomInput.Text = activeSettings.SimpleTaskbarLayout.MarginBottom.ToString();
mRightInput.Text = activeSettings.SimpleTaskbarLayout.MarginRight.ToString();
selectedSegment = 0;
}
// Get whether or not taskbar is centred
try
{
using (RegistryKey key = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced"))
{
if (key != null)
{
int val = (int)key.GetValue("TaskbarAl");
if (val == 1)
{
isCentred = true;
}
else
{
isCentred = false;
}
interaction.AddLog($"Taskbar centred? {isCentred}");
}
}
}
catch (Exception aaaa)
{
interaction.AddLog(aaaa.Message);
}
if (!isWindows11)
{
activeSettings.IsCentred = false;
}
// Copy and apply settings to UI
dynamicCheckBox.IsChecked = activeSettings.IsDynamic;
centredCheckBox.IsChecked = activeSettings.IsCentred;
showTrayCheckBox.IsChecked = activeSettings.ShowTray;
showWidgetsCheckBox.IsChecked = activeSettings.ShowWidgets;
showClockCheckBox.IsChecked = activeSettings.ShowSecondaryClock;
fillMaximisedCheckBox.IsChecked = activeSettings.FillOnMaximise;
fillAltTabCheckBox.IsChecked = activeSettings.FillOnTaskSwitch;
showSegmentsOnHoverCheckBox.IsChecked = activeSettings.ShowSegmentsOnHover;
compositionFixCheckBox.IsChecked = activeSettings.CompositionCompat;
autoHideComboBox.SelectedIndex = activeSettings.AutoHide;
widgetWidthInput.Text = activeSettings.WidgetsWidth.ToString();
clockWidthInput.Text = activeSettings.ClockWidth.ToString();
taskbarDetails = Taskbar.GenerateTaskbarInfo(isWindows11);
ApplyButton_Click(null, null);
if (!activeSettings.FillOnMaximise)
{
activeSettings.FillOnTaskSwitch = false;
fillAltTabCheckBox.IsEnabled = false;
}
//Showhide the split mode help button
if (!isWindows11 && activeSettings.IsDynamic)
{
splitHelpButton.Visibility = Visibility.Visible;
}
else
{
splitHelpButton.Visibility = Visibility.Hidden;
}
if (activeSettings.IsNotFirstLaunch != true)
{
activeSettings.IsNotFirstLaunch = true;
AboutWindow aw = new AboutWindow();
aw.expander0.IsExpanded = true;
aw.ShowDialog();
try
{
Visibility = Visibility.Visible;
}
catch (InvalidOperationException)
{
}
ShowMenuItem.Header = "Hide RoundedTB";
}
AutoHide(true, taskbarDetails);
UpdateUi();
}
public void UpdateUi()
{
if (!activeSettings.ShowTray || activeSettings.ShowSegmentsOnHover)
{
trayRectStandIn.Opacity = 0.5;
}
else
{
trayRectStandIn.Opacity = 1;
}
if (!activeSettings.ShowWidgets || activeSettings.ShowSegmentsOnHover)
{
widgetsRectStandIn.Opacity = 0.5;
}
else
{
widgetsRectStandIn.Opacity = 1;
}
rectStands.AllWithoutCenterBar.ForEach(x => x.KeyControl.Visibility = Visibility.Hidden);
if (activeSettings.IsCentred && activeSettings.IsWindows11 && activeSettings.IsDynamic)
{
taskbarRectStandIn.Margin = new Thickness(126, 0, 126, 5);
rectStands.AllWithoutCenterBar.ForEach(x => x.KeyControl.Visibility = Visibility.Visible);
}
else if (activeSettings.IsDynamic)
{
taskbarRectStandIn.Margin = new Thickness(5, 0, 247, 5);
trayRectStandIn.Visibility = Visibility.Visible;
}
else
{
taskbarRectStandIn.Margin = new Thickness(5, 210, 5, 5);
}
}
public void AutoHide(bool enabled, List taskbarDetails)
{
int workingHeight = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Height;
int boundsHeight = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height;
int taskbarHeight = taskbarDetails[0].TaskbarRect.Bottom - taskbarDetails[0].TaskbarRect.Top;
bool workAreaMisconfigured = false;
if (boundsHeight - taskbarHeight > workingHeight)
{
workAreaMisconfigured = true;
}
if (activeSettings.AutoHide > 0 && enabled)
{
MonitorStuff.DisplayInfoCollection Displays = MonitorStuff.GetDisplays();
foreach (MonitorStuff.DisplayInfo display in Displays)
{
LocalPInvoke.RECT workArea = display.MonitorArea;
workArea.Bottom = workArea.Bottom - 2;
Interaction.SetWorkspace(workArea);
}
foreach (Types.Taskbar taskbar in taskbarDetails)
{
LocalPInvoke.SetWindowPos(taskbar.TaskbarHwnd, new IntPtr(-1), 0, 0, 0, 0, LocalPInvoke.SetWindowPosFlags.IgnoreMove | LocalPInvoke.SetWindowPosFlags.IgnoreResize);
Taskbar.SetTaskbarState(LocalPInvoke.AppBarStates.AlwaysOnTop, taskbar.TaskbarHwnd);
}
}
else if (!enabled)
{
foreach (Types.Taskbar taskbar in taskbarDetails)
{
LocalPInvoke.SetWindowPos(taskbar.TaskbarHwnd, new IntPtr(-1), 0, 0, 0, 0, LocalPInvoke.SetWindowPosFlags.IgnoreMove | LocalPInvoke.SetWindowPosFlags.IgnoreResize);
if (workAreaMisconfigured)
{
Taskbar.SetTaskbarState(LocalPInvoke.AppBarStates.AutoHide, taskbar.TaskbarHwnd);
Taskbar.SetTaskbarState(LocalPInvoke.AppBarStates.AlwaysOnTop, taskbar.TaskbarHwnd);
}
MonitorStuff.DisplayInfoCollection Displays = MonitorStuff.GetDisplays();
foreach (MonitorStuff.DisplayInfo display in Displays)
{
taskbarHeight = taskbar.TaskbarRect.Bottom - taskbar.TaskbarRect.Top;
LocalPInvoke.RECT workArea = display.MonitorArea;
workArea.Bottom = workArea.Bottom - taskbarHeight;
Interaction.SetWorkspace(workArea);
}
}
}
}
public void TrayIconCheck(bool isForceReset)
{
Uri resLight = new("pack://application:,,,/res/traylight.ico");
Uri resDark = new("pack://application:,,,/res/traydark.ico");
if (false)
{
// TODO: Show system theme mode icon.
bool cuurentIsLightMode = IsThemeLightMode();
if (cuurentIsLightMode)
{
mainTitleBar.NotifyIconImage = System.Windows.Media.Imaging.BitmapFrame.Create(
new System.Windows.Media.Imaging.BitmapImage(resLight));
}
else
{
mainTitleBar.NotifyIconImage = System.Windows.Media.Imaging.BitmapFrame.Create(
new System.Windows.Media.Imaging.BitmapImage(resDark));
}
}
if (isForceReset)
{
mainTitleBar.ResetIcon();
}
}
public bool IsThemeLightMode()
{
if (this.isWindows11)
{
return IsThemeLightModeForWin11();
}
else
{
// To be removed in the future.
WPFUI.Theme.Style style = WPFUI.Theme.Manager.GetSystemTheme();
return (style == WPFUI.Theme.Style.Light);
}
}
private static bool IsThemeLightModeForWin11()
{
RegistryKey key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Themes\Personalize");
int sysLightTheme = (int)key.GetValue("SystemUsesLightTheme");
bool isLight = (sysLightTheme == 1);
return isLight;
}
public void ApplyButton_Click(object sender, RoutedEventArgs e)
{
int mt = 0;
int ml = 0;
int mb = 0;
int mr = 0;
int widgetWidth = 0;
int clockWidth = 0;
{
if ((!int.TryParse(mTopInput.Text, out mt) && mTopInput.Text != string.Empty)
|| (!int.TryParse(mLeftInput.Text, out ml) && mLeftInput.Text != string.Empty)
|| (!int.TryParse(mBottomInput.Text, out mb) && mBottomInput.Text != string.Empty)
|| (!int.TryParse(mRightInput.Text, out mr) && mRightInput.Text != string.Empty))
{
return;
}
if ((!int.TryParse(widgetWidthInput.Text, out widgetWidth) && widgetWidthInput.Text != string.Empty)
|| (!int.TryParse(clockWidthInput.Text, out clockWidth) && clockWidthInput.Text != string.Empty))
{
return;
}
}
activeSettings.WidgetsWidth = widgetWidth;
activeSettings.ClockWidth = clockWidth;
activeSettings.AutoHide = autoHideComboBox.SelectedIndex;
activeSettings.IsDynamic = (bool)dynamicCheckBox.IsChecked;
activeSettings.IsCentred = Taskbar.CheckIfCentred();
activeSettings.ShowTray = (bool)showTrayCheckBox.IsChecked;
activeSettings.ShowWidgets = (bool)showWidgetsCheckBox.IsChecked;
activeSettings.ShowSecondaryClock = (bool)showClockCheckBox.IsChecked;
activeSettings.CompositionCompat = (bool)compositionFixCheckBox.IsChecked;
activeSettings.FillOnMaximise = (bool)fillMaximisedCheckBox.IsChecked;
activeSettings.FillOnTaskSwitch = (bool)fillAltTabCheckBox.IsChecked;
activeSettings.ShowSegmentsOnHover = (bool)showSegmentsOnHoverCheckBox.IsChecked;
try
{
foreach (Types.Taskbar taskbar in taskbarDetails)
{
int isFullTest = taskbar.TrayRect.Left - taskbar.AppListRect.Right;
if (!activeSettings.IsDynamic || (isFullTest <= taskbar.ScaleFactor * 25 && isFullTest > 0 && taskbar.TrayRect.Left != 0))
{
Taskbar.UpdateSimpleTaskbar(taskbar, activeSettings);
}
else
{
Taskbar.UpdateDynamicTaskbar(taskbar, activeSettings);
}
}
}
catch (InvalidOperationException aaaa)
{
interaction.AddLog(aaaa.Message);
}
if (taskbarThread.IsBusy == false)
{
taskbarThread.RunWorkerAsync((mt, ml, mb, mr, 0));
}
else
{
taskbarThread.CancelAsync();
while (taskbarThread.IsBusy == true)
{
System.Windows.Forms.Application.DoEvents();
System.Threading.Thread.Sleep(100);
}
taskbarThread.RunWorkerAsync((mt, ml, mb, mr, 0));
}
if (activeSettings.AutoHide < 1)
{
AutoHide(false, taskbarDetails);
}
else
{
AutoHide(true, taskbarDetails);
}
interaction.WriteJSON();
TrayIconCheck(isForceReset: true);
UpdateUi();
}
protected override void OnClosing(CancelEventArgs e)
{
base.OnClosing(e);
if (shouldReallyDieNoReally == false)
{
e.Cancel = true;
Visibility = Visibility.Hidden;
ShowMenuItem.Header = "Show RoundedTB";
}
else
{
try
{
taskbarThread.CancelAsync();
}
catch (Exception aaaa)
{
interaction.AddLog(aaaa.Message);
}
while (taskbarThread.IsBusy == true)
{
System.Windows.Forms.Application.DoEvents();
System.Threading.Thread.Sleep(100);
}
try
{
foreach (var tbDeets in taskbarDetails)
{
Taskbar.ResetTaskbar(tbDeets, activeSettings);
}
if (activeSettings.AutoHide > 0)
{
AutoHide(false, taskbarDetails);
}
}
catch (InvalidOperationException aaaa)
{
interaction.AddLog($"Taskbar structure changed on exit:\n{aaaa.Message}");
}
interaction.AddLog("Exiting RoundedTB.");
}
if (!isAlreadyRunning)
{
interaction.WriteJSON();
}
}
private void CloseMenuItem_Click(object sender, RoutedEventArgs e)
{
// Close any popups - leave main window for now
for (int windowCount = App.Current.Windows.Count - 1; windowCount >= 0; windowCount--)
{
App.Current.Windows[windowCount].Close();
}
shouldReallyDieNoReally = true;
Close();
}
public void ShowMenuItem_Click(object sender, RoutedEventArgs e)
{
if (IsVisible == false)
{
Visibility = Visibility.Visible;
ShowMenuItem.Header = "Hide RoundedTB";
}
else
{
// Close any popups - leave main window for now
for (int windowCount = App.Current.Windows.Count - 1; windowCount >= 0; windowCount--)
{
App.Current.Windows[windowCount].Close();
}
Visibility = Visibility.Hidden;
ShowMenuItem.Header = "Show RoundedTB";
}
}
private async void Startup_Clicked(object sender, RoutedEventArgs e)
{
Debug.WriteLine("Startup toggled");
if (IsRunningAsUWP())
{
await StartupToggle();
await StartupInit(false);
}
else
{
if (System.IO.File.Exists(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Startup), "RoundedTB.lnk")))
{
System.IO.File.Delete(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Startup), "RoundedTB.lnk"));
}
else
{
EnableStartup();
}
}
}
public void EnableStartup()
{
try
{
string shortcutFolder = Environment.GetFolderPath(Environment.SpecialFolder.Startup);
if (!Directory.Exists(shortcutFolder))
{
Directory.CreateDirectory(shortcutFolder);
}
WshShell shellClass = new WshShell();
string rtbStartupLink = Path.Combine(shortcutFolder, "RoundedTB.lnk");
IWshShortcut shortcut = (IWshShortcut)shellClass.CreateShortcut(rtbStartupLink);
shortcut.TargetPath = Environment.GetCommandLineArgs()[0];
shortcut.IconLocation = Environment.GetCommandLineArgs()[0];
shortcut.Arguments = "";
shortcut.Description = "Start RoundedTB";
shortcut.Save();
}
catch (Exception)
{
}
}
async Task StartupToggle()
{
StartupTask startupTask = await StartupTask.GetAsync("RTB"); // Pass the task ID you specified in the appxmanifest file
switch (startupTask.State)
{
case StartupTaskState.Disabled:
StartupTaskState newState = await startupTask.RequestEnableAsync();
StartupCheckBox.IsEnabled = true;
break;
case StartupTaskState.DisabledByUser:
StartupCheckBox.IsEnabled = false;
break;
case StartupTaskState.EnabledByPolicy:
StartupCheckBox.IsEnabled = false;
break;
case StartupTaskState.DisabledByPolicy:
StartupCheckBox.IsEnabled = false;
break;
case StartupTaskState.Enabled:
startupTask.Disable();
StartupCheckBox.IsEnabled = true;
break;
}
}
async Task StartupInit(bool clean)
{
StartupTask startupTask = await StartupTask.GetAsync("RTB");
switch (startupTask.State)
{
case StartupTaskState.Disabled:
StartupCheckBox.IsChecked = false;
StartupCheckBox.IsEnabled = true;
if (clean)
{
Visibility = Visibility.Visible;
ShowMenuItem.Header = "Hide RoundedTB";
}
StartupCheckBox.Content = "Run at startup";
break;
case StartupTaskState.DisabledByUser:
StartupCheckBox.IsChecked = false;
StartupCheckBox.IsEnabled = false;
if (clean)
{
Visibility = Visibility.Visible;
ShowMenuItem.Header = "Hide RoundedTB";
}
StartupCheckBox.Content = "Startup unavailable";
break;
case StartupTaskState.EnabledByPolicy:
StartupCheckBox.IsChecked = true;
StartupCheckBox.IsEnabled = false;
if (clean)
{
Visibility = Visibility.Hidden;
ShowMenuItem.Header = "Show RoundedTB";
}
StartupCheckBox.Content = "Startup mandatory";
break;
case StartupTaskState.DisabledByPolicy:
StartupCheckBox.IsChecked = false;
StartupCheckBox.IsEnabled = false;
if (clean)
{
Visibility = Visibility.Visible;
ShowMenuItem.Header = "Hide RoundedTB";
}
StartupCheckBox.Content = "Startup unavailable";
break;
case StartupTaskState.Enabled:
StartupCheckBox.IsChecked = true;
StartupCheckBox.IsEnabled = true;
if (clean)
{
Visibility = Visibility.Hidden;
ShowMenuItem.Header = "Show RoundedTB";
}
StartupCheckBox.Content = "Run at startup";
break;
}
}
// Checks if running as a UWP app
public bool IsRunningAsUWP()
{
try
{
Helpers helpers = new Helpers();
return helpers.IsRunningAsUwp();
}
catch (Exception)
{
return false;
}
}
private void DebugMenuItem_Click(object sender, RoutedEventArgs e)
{
IntPtr hwndNext = LocalPInvoke.FindWindowExA(taskbarDetails[0].TaskbarHwnd, IntPtr.Zero, "Start", null);
List floatingMilkshakesBitsOfTaskbar = new List();
floatingMilkshakesBitsOfTaskbar.Add(hwndNext);
while (true)
{
hwndNext = LocalPInvoke.FindWindowExA(taskbarDetails[0].TaskbarHwnd, hwndNext, null, null);
if (floatingMilkshakesBitsOfTaskbar.Contains(hwndNext))
{
break;
}
floatingMilkshakesBitsOfTaskbar.Add(hwndNext);
}
foreach (IntPtr hwnd in floatingMilkshakesBitsOfTaskbar)
{
LocalPInvoke.GetWindowRect(hwnd, out LocalPInvoke.RECT rect);
LocalPInvoke.MoveWindow(hwnd, rect.Left + 50, rect.Top, (rect.Right + 50) - (rect.Left + 50), rect.Bottom - rect.Top, true);
}
}
private async void ContextMenu_MouseEnter(object sender, System.Windows.Input.MouseEventArgs e)
{
if (IsRunningAsUWP())
{
await StartupInit(false);
}
}
private void dynamicCheckBox_Checked(object sender, RoutedEventArgs e)
{
centredCheckBox.IsEnabled = true;
showSegmentsOnHoverCheckBox.IsEnabled = true;
showSegmentsOnHoverCheckBox.IsChecked = false;
showTrayCheckBox.IsEnabled = true;
showTrayCheckBox.IsChecked = true;
if (!isWindows11)
{
splitHelpButton.Visibility = Visibility.Visible;
if (Opacity > 0.5)
{
splitHelpButton_Click(null, null);
}
}
}
private void dynamicCheckBox_Unchecked(object sender, RoutedEventArgs e)
{
centredCheckBox.IsEnabled = false;
centredCheckBox.IsChecked = false;
showSegmentsOnHoverCheckBox.IsEnabled = false;
showSegmentsOnHoverCheckBox.IsChecked = false;
showTrayCheckBox.IsEnabled = false;
showTrayCheckBox.IsChecked = false;
if (!isWindows11)
{
splitHelpButton.Visibility = Visibility.Hidden;
}
}
private void cornerRadiusSlider_DragCompleted(object sender, System.Windows.Controls.Primitives.DragCompletedEventArgs e)
{
int check = Convert.ToInt32(Math.Round(cornerRadiusSlider.Value));
cornerRadiusInput.Text = check.ToString();
switch (selectedSegment)
{
default:
break;
case 0:
activeSettings.SimpleTaskbarLayout.CornerRadius = check;
break;
case 1:
activeSettings.DynamicAppListLayout.CornerRadius = check;
break;
case 2:
activeSettings.DynamicTrayLayout.CornerRadius = check;
break;
case 3:
activeSettings.DynamicWidgetsLayout.CornerRadius = check;
break;
case 4:
activeSettings.DynamicSecondaryClockLayout.CornerRadius = check;
break;
}
}
protected override void OnSourceInitialized(EventArgs e)
{
Debug.WriteLine("AAAAA");
base.OnSourceInitialized(e);
IntPtr handle = new WindowInteropHelper(this).Handle;
source = HwndSource.FromHwnd(handle);
source.AddHook(interaction.HwndHook);
bool wtf = LocalPInvoke.RegisterHotKey(handle, 9000, 0x8, 0x71);
Debug.WriteLine("KEY: " + wtf);
Debug.WriteLine(handle);
Debug.WriteLine((int)Types.KeyModifier.WinKey);
Debug.WriteLine(System.Windows.Forms.Keys.J.GetHashCode());
Visibility = Visibility.Hidden;
Opacity = 1;
}
private void splitHelpButton_Click(object sender, RoutedEventArgs e)
{
Infobox ib = new Infobox();
ib.Title = "RoundedTB - Split mode configuration";
ib.titleBlock.Text = "How to use Split Mode";
ib.bodyBlock.Text = "Split mode has a couple of limitations and requires a small amount of setup to get working properly.\n\nLimitations:\n1) Split mode doesn't resize itself automatically. This feature will be coming to RoundedTB for Windows 10 in the future.\n2) Toolbars are not compatible with split mode currently, and will need to be disabled apart from one (more on that in a moment).\n3) Split mode only works when the taskbar is horizontal at the top or bottom of the screen.\n\nSetup:\n1) Right-click the taskbar and disable \"Lock the taskbar\".\n2) Right-click it again and turn off any existing toolbars.\n3) Right-click a third time, select Toolbars > Desktop.\n4) Use the small || handle to resize the taskbar as you please.";
ib.ShowDialog();
}
private void compositionFixCheckBox_Checked(object sender, RoutedEventArgs e)
{
if (Opacity > 0.01)
{
Infobox ib = new Infobox();
ib.Height = 450;
ib.Title = "RoundedTB - TranslucentTB compatibility";
ib.titleBlock.Text = "Compatibility with TranslucentTB";
ib.bodyBlock.Text = "\nTranslucentTB is a utility that allows you to customise the opacity, blur and colour of the taskbar seamlessly with significantly finer control than other tools. Enable this option to allow RoundedTB and TranslucentTB to work together.\n\nThis is necessary due to a bug in Windows (it's not the fault of RoundedTB or TranslucentTB), and you might encounter some minor flickering when the taskbar \"updates\" (changes size, roundness or position). This is usually pretty minimal and many people use RoundedTB and TranslucentTB in tandem without complaint, but if it bothers you then I recommend sticking with either RoundedTB or TranslucentTB until a better solution is available.\n\nRegardless though, go show TranslucentTB some love! It's the OG Windows 10 aesthetic taskbar mod, the first one on the Microsoft Store and the project that inspired me to make RoundedTB. Plus, the dev is pretty awesome 💖";
ib.ShowDialog();
}
}
private void aboutButton_Click(object sender, RoutedEventArgs e)
{
AboutWindow aw = new AboutWindow();
aw.ShowDialog();
}
private void fillMaximisedCheckBox_Checked(object sender, RoutedEventArgs e)
{
if (isWindows11)
{
fillAltTabCheckBox.IsEnabled = true;
}
}
private void fillMaximisedCheckBox_Unchecked(object sender, RoutedEventArgs e)
{
fillAltTabCheckBox.IsEnabled = false;
fillAltTabCheckBox.IsChecked = false;
}
private void showSegmentsOnHoverCheckBox_Checked(object sender, RoutedEventArgs e)
{
showTrayCheckBox.IsEnabled = false;
showTrayCheckBox.IsChecked = false;
showWidgetsCheckBox.IsEnabled = false;
showWidgetsCheckBox.IsChecked = false;
}
private void showSegmentsOnHoverCheckBox_Unchecked(object sender, RoutedEventArgs e)
{
showTrayCheckBox.IsEnabled = true;
showTrayCheckBox.IsChecked = true;
showWidgetsCheckBox.IsEnabled = true;
showWidgetsCheckBox.IsChecked = true;
}
private void SetLayoutInput(Types.SegmentSettings layout)
{
cornerRadiusInput.Text = layout.CornerRadius.ToString();
cornerRadiusSlider.Value = layout.CornerRadius;
mTopInput.Text = layout.MarginTop.ToString();
mLeftInput.Text = layout.MarginLeft.ToString();
mBottomInput.Text = layout.MarginBottom.ToString();
mRightInput.Text = layout.MarginRight.ToString();
}
private void taskbarRectStandIn_Click(object sender, RoutedEventArgs e)
{
rectStands.Focus(rectStands.CenterBar);
if (activeSettings.IsDynamic)
{
selectedSegment = 1;
SetLayoutInput(activeSettings.DynamicAppListLayout);
}
else
{
selectedSegment = 0;
SetLayoutInput(activeSettings.SimpleTaskbarLayout);
}
}
private void trayRectStandIn_Click(object sender, RoutedEventArgs e)
{
rectStands.Focus(rectStands.TaskTray);
selectedSegment = 2;
SetLayoutInput(activeSettings.DynamicTrayLayout);
}
private void widgetsRectStandIn_Click(object sender, RoutedEventArgs e)
{
rectStands.Focus(rectStands.Widgets);
selectedSegment = 3;
SetLayoutInput(activeSettings.DynamicWidgetsLayout);
}
private void clockRectStandIn_Click(object sender, RoutedEventArgs e)
{
rectStands.Focus(rectStands.Clock);
selectedSegment = 4;
SetLayoutInput(activeSettings.DynamicSecondaryClockLayout);
}
private void mTopInput_LostFocus(object sender, RoutedEventArgs e)
{
if (int.TryParse(mTopInput.Text, out int check) && mTopInput.Text != string.Empty)
{
switch (selectedSegment)
{
default:
break;
case 0:
activeSettings.SimpleTaskbarLayout.MarginTop = check;
break;
case 1:
activeSettings.DynamicAppListLayout.MarginTop = check;
break;
case 2:
activeSettings.DynamicTrayLayout.MarginTop = check;
break;
case 3:
activeSettings.DynamicWidgetsLayout.MarginTop = check;
break;
case 4:
activeSettings.DynamicSecondaryClockLayout.MarginTop = check;
break;
}
}
}
private void mBottomInput_LostFocus(object sender, RoutedEventArgs e)
{
if (int.TryParse(mBottomInput.Text, out int check) && mBottomInput.Text != string.Empty)
{
switch (selectedSegment)
{
default:
break;
case 0:
activeSettings.SimpleTaskbarLayout.MarginBottom = check;
break;
case 1:
activeSettings.DynamicAppListLayout.MarginBottom = check;
break;
case 2:
activeSettings.DynamicTrayLayout.MarginBottom = check;
break;
case 3:
activeSettings.DynamicWidgetsLayout.MarginBottom = check;
break;
case 4:
activeSettings.DynamicSecondaryClockLayout.MarginBottom = check;
break;
}
}
}
private void mLeftInput_LostFocus(object sender, RoutedEventArgs e)
{
if (int.TryParse(mLeftInput.Text, out int check) && mLeftInput.Text != string.Empty)
{
switch (selectedSegment)
{
default:
break;
case 0:
activeSettings.SimpleTaskbarLayout.MarginLeft = check;
break;
case 1:
activeSettings.DynamicAppListLayout.MarginLeft = check;
break;
case 2:
activeSettings.DynamicTrayLayout.MarginLeft = check;
break;
case 3:
activeSettings.DynamicWidgetsLayout.MarginLeft = check;
break;
case 4:
activeSettings.DynamicSecondaryClockLayout.MarginLeft = check;
break;
}
}
}
private void mRightInput_LostFocus(object sender, RoutedEventArgs e)
{
if (int.TryParse(mRightInput.Text, out int check) && mRightInput.Text != string.Empty)
{
switch (selectedSegment)
{
default:
break;
case 0:
activeSettings.SimpleTaskbarLayout.MarginRight = check;
break;
case 1:
activeSettings.DynamicAppListLayout.MarginRight = check;
break;
case 2:
activeSettings.DynamicTrayLayout.MarginRight = check;
break;
case 3:
activeSettings.DynamicWidgetsLayout.MarginRight = check;
break;
case 4:
activeSettings.DynamicSecondaryClockLayout.MarginRight = check;
break;
}
}
}
private void cornerRadiusInput_LostFocus(object sender, RoutedEventArgs e)
{
if (int.TryParse(cornerRadiusInput.Text, out int check) && cornerRadiusInput.Text != string.Empty)
{
switch (selectedSegment)
{
default:
break;
case 0:
activeSettings.SimpleTaskbarLayout.CornerRadius = check;
break;
case 1:
activeSettings.DynamicAppListLayout.CornerRadius = check;
break;
case 2:
activeSettings.DynamicTrayLayout.CornerRadius = check;
break;
case 3:
activeSettings.DynamicWidgetsLayout.CornerRadius = check;
break;
case 4:
activeSettings.DynamicSecondaryClockLayout.CornerRadius = check;
break;
}
cornerRadiusSlider.Value = check;
}
}
private void cornerRadiusSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs e)
{
cornerRadiusInput.Text = Math.Round(cornerRadiusSlider.Value).ToString();
}
}
}
================================================
FILE: RoundedTB/MonitorStuff.cs
================================================
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Windows;
namespace RoundedTB
{
class MonitorStuff
{
[DllImport("user32.dll")]
public static extern bool EnumDisplayMonitors(IntPtr hdc, IntPtr lprcClip, EnumMonitorsDelegate lpfnEnum, IntPtr dwData);
[DllImport("user32.dll")]
public static extern bool GetMonitorInfo(IntPtr hMonitor, ref MONITORINFO lplmi);
[StructLayout(LayoutKind.Sequential)]
public struct MONITORINFO
{
public uint cbSize;
public LocalPInvoke.RECT rcMonitor;
public LocalPInvoke.RECT rcWork;
public uint dwFlags;
}
// Stuff for acquiring mouse position because Cursor.Position failed me
[StructLayout(LayoutKind.Sequential)]
public struct POINT
{
public int X;
public int Y;
public static implicit operator Point(POINT point)
{
return new Point(point.X, point.Y);
}
}
// It's like a normal bool but delegate, perhaps its also delicate? I don't know. That's up to you, I suppose!
public delegate bool EnumMonitorsDelegate(IntPtr hMonitor, IntPtr hdcMonitor, ref LocalPInvoke.RECT lprcMonitor, IntPtr dwData);
// Gets a list of display info
public static DisplayInfoCollection GetDisplays()
{
DisplayInfoCollection col = new DisplayInfoCollection();
EnumDisplayMonitors(IntPtr.Zero, IntPtr.Zero,
delegate (IntPtr hMonitor, IntPtr hdcMonitor, ref LocalPInvoke.RECT lprcMonitor, IntPtr dwData)
{
MONITORINFO mi = new MONITORINFO();
mi.cbSize = (uint)Marshal.SizeOf(mi);
bool success = GetMonitorInfo(hMonitor, ref mi);
if (success)
{
DisplayInfo di = new DisplayInfo
{
ScreenWidth = (mi.rcMonitor.Right - mi.rcMonitor.Left).ToString(),
ScreenHeight = (mi.rcMonitor.Bottom - mi.rcMonitor.Top).ToString(),
MonitorArea = mi.rcMonitor,
WorkArea = mi.rcWork,
Availability = mi.dwFlags.ToString(),
Handle = hMonitor,
Top = mi.rcMonitor.Top,
Left = mi.rcMonitor.Left
};
col.Add(di);
}
return true;
}, IntPtr.Zero);
return col;
}
// Super-handy to do things or something
public class DisplayInfoCollection : List
{
}
// What the above is made of
public class DisplayInfo
{
public string Availability { get; set; }
public string ScreenHeight { get; set; }
public string ScreenWidth { get; set; }
public LocalPInvoke.RECT MonitorArea { get; set; }
public LocalPInvoke.RECT WorkArea { get; set; }
public IntPtr Handle { get; set; }
public int Top { get; set; }
public int Left { get; set; }
}
}
}
================================================
FILE: RoundedTB/Properties/AssemblyInfo.cs
================================================
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("RoundedTB")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("RoundedTB")]
[assembly: AssemblyCopyright("Copyright © 2021")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
//the NeutralResourceLanguage attribute below. Update the "en-US" in
//the line below to match the UICulture setting in the project file.
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
================================================
FILE: RoundedTB/Properties/Resources.Designer.cs
================================================
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
namespace RoundedTB.Properties {
using global::System;
///
/// A strongly-typed resource class, for looking up localized strings, etc.
///
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
///
/// Returns the cached ResourceManager instance used by this class.
///
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RoundedTB.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
///
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
///
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
}
}
================================================
FILE: RoundedTB/Properties/Resources.resx
================================================
text/microsoft-resx
2.0
System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
================================================
FILE: RoundedTB/Properties/Settings.Designer.cs
================================================
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
namespace RoundedTB.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.8.1.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default {
get {
return defaultInstance;
}
}
}
}
================================================
FILE: RoundedTB/Properties/Settings.settings
================================================
================================================
FILE: RoundedTB/RoundedTB.csproj
================================================
net6.0-windows10.0.19041
WinExe
false
publish\
true
Disk
false
Foreground
7
Days
false
false
true
0
1.0.0.%2a
false
true
false
true
true
true
RoundedTBCanary.ico
app.manifest
true
Z:\RTBDebug\bin\
1.2.1
1.1.0
10.19041.0
10.19041.0
13.0.1
0.7.104
1.2.1
all
{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}
1
0
0
tlbimp
False
True
False
Microsoft .NET Framework 4.8 %28x86 and x64%29
true
False
.NET Framework 3.5 SP1
false
================================================
FILE: RoundedTB/Taskbar.cs
================================================
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Win32;
using System.ComponentModel;
using System.Diagnostics;
using System.Windows;
using System.Windows.Threading;
using Newtonsoft.Json;
using System.Runtime.InteropServices;
using Interop.UIAutomationClient;
namespace RoundedTB
{
class Taskbar
{
///
/// Checks if the taskbar is centred.
///
///
/// A bool indicating if the taskbar is centred.
///
public static bool CheckIfCentred()
{
bool retVal;
try
{
using (RegistryKey key = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced"))
{
if (key != null)
{
int val = (int)key.GetValue("TaskbarAl");
if (val == 1)
{
retVal = true;
}
else
{
retVal = false;
}
}
else
{
retVal = false;
}
}
}
catch (Exception)
{
return false;
}
return retVal;
}
///
/// Compares two taskbars' rects to see if they've changed
///
///
/// a bool indicating if the taskbar's, applist's, and tray's rects rects have changed.
///
public static bool TaskbarRefreshRequired(Types.Taskbar currentTB, Types.Taskbar newTB, bool isDynamic)
{
// REMINDER: newTB will only have rect & hwnd info. Everything else will be null.
bool taskbarRectChanged = true;
bool appListRectChanged = true;
bool trayRectChanged = true;
if (
currentTB.TaskbarRect.Left == newTB.TaskbarRect.Left &&
currentTB.TaskbarRect.Top == newTB.TaskbarRect.Top &&
currentTB.TaskbarRect.Right == newTB.TaskbarRect.Right &&
currentTB.TaskbarRect.Bottom == newTB.TaskbarRect.Bottom)
{
taskbarRectChanged = false;
}
if (
currentTB.AppListRect.Left == newTB.AppListRect.Left &&
currentTB.AppListRect.Top == newTB.AppListRect.Top &&
currentTB.AppListRect.Right == newTB.AppListRect.Right &&
currentTB.AppListRect.Bottom == newTB.AppListRect.Bottom)
{
appListRectChanged = false;
}
if (
(currentTB.TrayRect.Left + 5 >= newTB.TrayRect.Left && currentTB.TrayRect.Left - 5 <= newTB.TrayRect.Left) &&
currentTB.TrayRect.Top == newTB.TrayRect.Top &&
currentTB.TrayRect.Right == newTB.TrayRect.Right &&
currentTB.TrayRect.Bottom == newTB.TrayRect.Bottom)
{
trayRectChanged = false;
}
if (isDynamic && (taskbarRectChanged || appListRectChanged || trayRectChanged))
{
return true;
}
else if (!isDynamic && taskbarRectChanged)
{
return true;
}
else
{
return false;
}
}
///
/// Gets the rects of the three components of the taskbar from their respective handles.
///
///
/// a partial Taskbar containing just rects and handles.
///
public static Types.Taskbar GetQuickTaskbarRects(IntPtr taskbarHwnd, IntPtr trayHwnd, IntPtr appListHwnd, Types.AppListXaml appListXaml)
{
LocalPInvoke.GetWindowRect(taskbarHwnd, out LocalPInvoke.RECT taskbarRectCheck);
LocalPInvoke.GetWindowRect(trayHwnd, out LocalPInvoke.RECT trayRectCheck);
LocalPInvoke.GetWindowRect(appListHwnd, out LocalPInvoke.RECT appListRectCheck);
LocalPInvoke.RECT? r = appListXaml?.GetWindowRect();
if (r != null)
{
appListRectCheck = r.Value;
}
return new Types.Taskbar()
{
AppListXaml = appListXaml,
TaskbarHwnd = taskbarHwnd,
TrayHwnd = trayHwnd,
AppListHwnd = appListHwnd,
TaskbarRect = taskbarRectCheck,
TrayRect = trayRectCheck,
AppListRect = appListRectCheck
};
}
///
/// Resets the specified taskbar.
///
public static void ResetTaskbar(Types.Taskbar taskbar, Types.Settings settings)
{
LocalPInvoke.SetWindowRgn(taskbar.TaskbarHwnd, IntPtr.Zero, true);
LocalPInvoke.SetLayeredWindowAttributes(taskbar.TaskbarHwnd, 0, 255, LocalPInvoke.LWA_ALPHA);
int style = LocalPInvoke.GetWindowLong(taskbar.TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE).ToInt32();
if ((style & LocalPInvoke.WS_EX_LAYERED) == LocalPInvoke.WS_EX_LAYERED)
{
LocalPInvoke.SetWindowLong(taskbar.TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE, LocalPInvoke.GetWindowLong(taskbar.TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE).ToInt32() ^ LocalPInvoke.WS_EX_LAYERED);
}
style = LocalPInvoke.GetWindowLong(taskbar.TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE).ToInt32();
if ((style & LocalPInvoke.WS_EX_TRANSPARENT) == LocalPInvoke.WS_EX_TRANSPARENT)
{
LocalPInvoke.SetWindowLong(taskbar.TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE, LocalPInvoke.GetWindowLong(taskbar.TaskbarHwnd, LocalPInvoke.GWL_EXSTYLE).ToInt32() ^ LocalPInvoke.WS_EX_TRANSPARENT);
}
if (settings.CompositionCompat)
{
Interaction.UpdateTranslucentTB(taskbar.TaskbarHwnd);
}
}
///
/// Creates a basic region for a specific taskbar and applies it.
///
///
/// a bool indicating success.
///
public static bool UpdateSimpleTaskbar(Types.Taskbar taskbar, Types.Settings settings)
{
IntPtr region = IntPtr.Zero;
try
{
// Create an effective region to be applied to the taskbar
Types.EffectiveRegion taskbarEffectiveRegion = new Types.EffectiveRegion
{
CornerRadius = Convert.ToInt32(settings.SimpleTaskbarLayout.CornerRadius * taskbar.ScaleFactor),
Top = Convert.ToInt32(settings.SimpleTaskbarLayout.MarginTop * taskbar.ScaleFactor),
Left = Convert.ToInt32(settings.SimpleTaskbarLayout.MarginLeft * taskbar.ScaleFactor),
Width = Convert.ToInt32(taskbar.TaskbarRect.Right - taskbar.TaskbarRect.Left - (settings.SimpleTaskbarLayout.MarginRight * taskbar.ScaleFactor)) + 1,
Height = Convert.ToInt32(taskbar.TaskbarRect.Bottom - taskbar.TaskbarRect.Top - (settings.SimpleTaskbarLayout.MarginBottom * taskbar.ScaleFactor)) + 1
};
region = LocalPInvoke.CreateRoundRectRgn(taskbarEffectiveRegion.Left, taskbarEffectiveRegion.Top, taskbarEffectiveRegion.Width, taskbarEffectiveRegion.Height, taskbarEffectiveRegion.CornerRadius, taskbarEffectiveRegion.CornerRadius);
LocalPInvoke.SetWindowRgn(taskbar.TaskbarHwnd, region, true);
if (settings.CompositionCompat)
{
Interaction.UpdateTranslucentTB(taskbar.TaskbarHwnd);
}
return true;
}
catch (Exception)
{
return false;
}
finally
{
LocalPInvoke.DeleteObject(region);
}
}
///
/// Creates a dynamic region for a specific taskbar and applies it.
///
///
/// a bool indicating success.
///
public static bool UpdateDynamicTaskbar(Types.Taskbar taskbar, Types.Settings settings)
{
IntPtr workingRegion = IntPtr.Zero;
IntPtr trayRegion = IntPtr.Zero;
IntPtr widgetsRegion = IntPtr.Zero;
IntPtr clockRegion = IntPtr.Zero;
try
{
int centredDistanceFromEdge = 0;
// Create an effective region to be applied to the taskbar for the applist
Types.EffectiveRegion taskbarEffectiveRegion = new Types.EffectiveRegion
{
CornerRadius = Convert.ToInt32(settings.DynamicAppListLayout.CornerRadius * taskbar.ScaleFactor),
Top = Convert.ToInt32(settings.DynamicAppListLayout.MarginTop * taskbar.ScaleFactor),
Left = Convert.ToInt32(settings.DynamicAppListLayout.MarginLeft * taskbar.ScaleFactor),
Width = Convert.ToInt32(taskbar.TaskbarRect.Right - taskbar.TaskbarRect.Left - (settings.DynamicAppListLayout.MarginRight * taskbar.ScaleFactor)) + 1,
Height = Convert.ToInt32(taskbar.TaskbarRect.Bottom - taskbar.TaskbarRect.Top - (settings.DynamicAppListLayout.MarginBottom * taskbar.ScaleFactor)) + 1
};
// Create an effective region to be applied to the taskbar for the applist
Types.EffectiveRegion centredEffectiveRegion = new Types.EffectiveRegion
{
CornerRadius = Convert.ToInt32(settings.DynamicAppListLayout.CornerRadius * taskbar.ScaleFactor),
Top = Convert.ToInt32(settings.DynamicAppListLayout.MarginTop * taskbar.ScaleFactor),
Left = Convert.ToInt32(settings.DynamicAppListLayout.MarginRight * taskbar.ScaleFactor) - 1,
Width = Convert.ToInt32(taskbar.TaskbarRect.Right - taskbar.TaskbarRect.Left - (settings.DynamicAppListLayout.MarginRight * taskbar.ScaleFactor)) + 1,
Height = Convert.ToInt32(taskbar.TaskbarRect.Bottom - taskbar.TaskbarRect.Top - (settings.DynamicAppListLayout.MarginBottom * taskbar.ScaleFactor)) + 1
};
// Create an effective region to be applied to the taskbar for the tray
Types.EffectiveRegion trayEffectiveRegion = new Types.EffectiveRegion
{
CornerRadius = Convert.ToInt32(settings.DynamicTrayLayout.CornerRadius * taskbar.ScaleFactor),
Top = Convert.ToInt32(settings.DynamicTrayLayout.MarginTop * taskbar.ScaleFactor),
Left = Convert.ToInt32((settings.DynamicTrayLayout.MarginLeft * taskbar.ScaleFactor) - (3 * taskbar.ScaleFactor)), // Add extra margin for taskbar left as there's no "padding" provided by Windows and always looks weird as soon as you trim it otherwise.
Width = Convert.ToInt32(taskbar.TaskbarRect.Right - taskbar.TaskbarRect.Left - (settings.DynamicTrayLayout.MarginRight * taskbar.ScaleFactor)) + 1,
Height = Convert.ToInt32(taskbar.TaskbarRect.Bottom - taskbar.TaskbarRect.Top - (settings.DynamicTrayLayout.MarginBottom * taskbar.ScaleFactor)) + 1
};
Types.EffectiveRegion widgetsEffectiveRegion = new Types.EffectiveRegion
{
CornerRadius = Convert.ToInt32(settings.DynamicWidgetsLayout.CornerRadius * taskbar.ScaleFactor),
Top = Convert.ToInt32(settings.DynamicWidgetsLayout.MarginTop * taskbar.ScaleFactor),
Left = Convert.ToInt32(settings.DynamicWidgetsLayout.MarginLeft * taskbar.ScaleFactor),
Width = Convert.ToInt32(settings.WidgetsWidth * taskbar.ScaleFactor - (settings.DynamicWidgetsLayout.MarginRight * taskbar.ScaleFactor)) + 1,
Height = Convert.ToInt32(taskbar.TaskbarRect.Bottom - taskbar.TaskbarRect.Top - (settings.DynamicWidgetsLayout.MarginBottom * taskbar.ScaleFactor)) + 1
};
Types.EffectiveRegion secondaryClockRegion = new Types.EffectiveRegion
{
CornerRadius = Convert.ToInt32(settings.DynamicSecondaryClockLayout.CornerRadius * taskbar.ScaleFactor),
Top = Convert.ToInt32(settings.DynamicSecondaryClockLayout.MarginTop * taskbar.ScaleFactor),
Left = (taskbar.TaskbarRect.Right - taskbar.TaskbarRect.Left) - settings.ClockWidth - Convert.ToInt32(settings.DynamicSecondaryClockLayout.MarginLeft * taskbar.ScaleFactor),
Width = Convert.ToInt32(settings.ClockWidth * taskbar.ScaleFactor - (settings.DynamicSecondaryClockLayout.MarginRight * taskbar.ScaleFactor)) + 1,
Height = Convert.ToInt32(taskbar.TaskbarRect.Bottom - taskbar.TaskbarRect.Top - (settings.DynamicSecondaryClockLayout.MarginBottom * taskbar.ScaleFactor)) + 1
};
centredDistanceFromEdge = taskbar.TaskbarRect.Right - taskbar.AppListRect.Right - Convert.ToInt32(2 * taskbar.ScaleFactor);
// If on Windows 10, add an extra 20 logical pixels for the grabhandle
if (!settings.IsWindows11)
{
centredDistanceFromEdge -= Convert.ToInt32(20 * taskbar.ScaleFactor);
}
// Create region for if the taskbar is centred by take the right-to-right distance (centredDistanceFromEdge) off from both sides, as well as the margin
if (settings.IsCentred)
{
workingRegion = LocalPInvoke.CreateRoundRectRgn(
centredDistanceFromEdge + centredEffectiveRegion.Left,
centredEffectiveRegion.Top,
centredEffectiveRegion.Width - centredDistanceFromEdge,
centredEffectiveRegion.Height,
centredEffectiveRegion.CornerRadius,
centredEffectiveRegion.CornerRadius
);
}
// Create a region for if the taskbar is left-aligned, right-to-right distance (centredDistanceFromEdge) off from the right-hand side, as well as the margin
else
{
workingRegion = LocalPInvoke.CreateRoundRectRgn(
taskbarEffectiveRegion.Left,
taskbarEffectiveRegion.Top,
taskbarEffectiveRegion.Width - centredDistanceFromEdge,
taskbarEffectiveRegion.Height,
taskbarEffectiveRegion.CornerRadius,
taskbarEffectiveRegion.CornerRadius
);
}
if (settings.ShowSecondaryClock && taskbar.IsSecondary)
{
clockRegion = LocalPInvoke.CreateRoundRectRgn(
secondaryClockRegion.Left,
secondaryClockRegion.Top,
secondaryClockRegion.Width + secondaryClockRegion.Left,
secondaryClockRegion.Height,
secondaryClockRegion.CornerRadius,
secondaryClockRegion.CornerRadius
);
LocalPInvoke.CombineRgn(workingRegion, clockRegion, workingRegion, 2);
}
// If the user has it enabled and the tray handle isn't null, create a region for the system tray and merge it with the taskbar region
if (settings.ShowTray && taskbar.TrayHwnd != IntPtr.Zero)
{
trayRegion = LocalPInvoke.CreateRoundRectRgn(
(taskbar.TrayRect.Left - taskbar.TaskbarRect.Left) - trayEffectiveRegion.Left,
trayEffectiveRegion.Top,
trayEffectiveRegion.Width,
trayEffectiveRegion.Height,
trayEffectiveRegion.CornerRadius,
trayEffectiveRegion.CornerRadius
);
LocalPInvoke.CombineRgn(workingRegion, trayRegion, workingRegion, 2);
}
if (settings.ShowWidgets)
{
widgetsRegion = LocalPInvoke.CreateRoundRectRgn(
widgetsEffectiveRegion.Left,
widgetsEffectiveRegion.Top,
widgetsEffectiveRegion.Width,
widgetsEffectiveRegion.Height,
widgetsEffectiveRegion.CornerRadius,
widgetsEffectiveRegion.CornerRadius
);
LocalPInvoke.CombineRgn(workingRegion, widgetsRegion, workingRegion, 2);
}
// Apply the final region to the taskbar
LocalPInvoke.SetWindowRgn(taskbar.TaskbarHwnd, workingRegion, true);
if (settings.CompositionCompat)
{
Interaction.UpdateTranslucentTB(taskbar.TaskbarHwnd);
}
return true;
}
catch (Exception)
{
return false;
}
finally
{
LocalPInvoke.DeleteObject(clockRegion);
LocalPInvoke.DeleteObject(widgetsRegion);
LocalPInvoke.DeleteObject(trayRegion);
LocalPInvoke.DeleteObject(workingRegion);
}
}
///
/// Checks if there are any new taskbars, or if any taskbars are no longer present.
///
///
/// a bool indicating success.
///
public static bool TaskbarCountOrHandleChanged(int taskbarCount, IntPtr mainTaskbarHandle)
{
List currentTaskbars = new List();
bool otherTaskbarsExist = true;
IntPtr hwndPrevious = IntPtr.Zero;
currentTaskbars.Add(LocalPInvoke.FindWindowExA(IntPtr.Zero, hwndPrevious, "Shell_TrayWnd", null));
if (currentTaskbars[0] == IntPtr.Zero)
{
return false;
}
if (currentTaskbars[0] != mainTaskbarHandle)
{
return true;
}
while (otherTaskbarsExist)
{
IntPtr hwndCurrent = LocalPInvoke.FindWindowExA(IntPtr.Zero, hwndPrevious, "Shell_SecondaryTrayWnd", null);
hwndPrevious = hwndCurrent;
if (hwndCurrent == IntPtr.Zero)
{
otherTaskbarsExist = false;
}
else
{
currentTaskbars.Add(hwndCurrent);
}
}
if (currentTaskbars.Count != taskbarCount)
{
return true;
}
return false;
}
///
/// Checks if the provided update is valid.
///
///
/// A bool indicating if the update is valid.
///
public static bool CheckDynamicUpdateIsValid(Types.Taskbar currentTB, Types.Taskbar newTB)
{
// REMINDER: newTB will only have rect & hwnd info. Everything else will be null.
// Check if either of the supplied taskbars are null
if (currentTB == null || newTB == null)
{
return false;
}
// Check if the taskbar handles are different
if (currentTB.TaskbarHwnd != newTB.TaskbarHwnd)
{
return false;
}
// Get width of app list. Not strictly necessary as the applist is always measured from the left but doing so just in case
int newAppListWidth = newTB.AppListRect.Right - newTB.AppListRect.Left;
int currentAppListWidth = currentTB.AppListRect.Right - currentTB.AppListRect.Left;
if (newTB.AppListRect.Right >= newTB.TrayRect.Left && newTB.TrayRect.Left != 0)
{
return false;
}
if (newAppListWidth == newTB.TrayRect.Left && newTB.TrayRect.Left != 0)
{
return false;
}
if (newAppListWidth <= 20 * currentTB.ScaleFactor && newAppListWidth != 0)
{
return false;
}
if (newAppListWidth >= newTB.TaskbarRect.Right - newTB.TaskbarRect.Left && newAppListWidth != 0)
{
return false;
}
Debug.WriteLine($"Old width: {currentAppListWidth}\nNew width: {newAppListWidth}");
return true;
}
/// Get AppList handle for win23h2 and later.
public static Types.AppListXaml GetAppListSince23H2(IntPtr hwndTaskbarMain)
{
return new Types.AppListXaml(hwndTaskbarMain);
}
///
/// Collects information on any currently-present taskbars.
///
///
/// A list of taskbars populated with information about their size, handles etc.
///
public static List GenerateTaskbarInfo(bool isWindows11)
{
List retVal = new List();
IntPtr hwndMain = LocalPInvoke.FindWindowExA(IntPtr.Zero, IntPtr.Zero, "Shell_TrayWnd", null); // Find main taskbar
LocalPInvoke.GetWindowRect(hwndMain, out LocalPInvoke.RECT rectMain); // Get the RECT of the main taskbar
IntPtr hrgnMain = IntPtr.Zero; // Set recovery region to IntPtr.Zero
IntPtr hwndTray = LocalPInvoke.FindWindowExA(hwndMain, IntPtr.Zero, "TrayNotifyWnd", null); // Get handle to the main taskbar's tray
LocalPInvoke.GetWindowRect(hwndTray, out LocalPInvoke.RECT rectTray); // Get the RECT for the main taskbar's tray
IntPtr hwndAppList = LocalPInvoke.FindWindowExA(LocalPInvoke.FindWindowExA(hwndMain, IntPtr.Zero, "ReBarWindow32", null), IntPtr.Zero, "MSTaskSwWClass", null); // Get the handle to the main taskbar's app list
LocalPInvoke.GetWindowRect(hwndAppList, out LocalPInvoke.RECT rectAppList);// Get the RECT for the main taskbar's app list
Types.AppListXaml appList = GetAppListSince23H2(hwndMain);
retVal.Add(new Types.Taskbar
{
AppListXaml = appList,
TaskbarHwnd = hwndMain,
TrayHwnd = hwndTray,
AppListHwnd = hwndAppList,
TaskbarRect = rectMain,
TrayRect = rectTray,
AppListRect = rectAppList,
RecoveryHrgn = hrgnMain,
ScaleFactor = Convert.ToDouble(LocalPInvoke.GetDpiForWindow(hwndMain)) / 96.00,
TaskbarRes = $"{rectMain.Right - rectMain.Left} x {rectMain.Bottom - rectMain.Top}",
Ignored = false,
IsSecondary = false,
});
int style = LocalPInvoke.GetWindowLong(hwndMain, LocalPInvoke.GWL_EXSTYLE).ToInt32();
if ((style & LocalPInvoke.WS_EX_LAYERED) != LocalPInvoke.WS_EX_LAYERED)
{
LocalPInvoke.SetWindowLong(hwndMain, LocalPInvoke.GWL_EXSTYLE, LocalPInvoke.GetWindowLong(hwndMain, LocalPInvoke.GWL_EXSTYLE).ToInt32() ^ LocalPInvoke.WS_EX_LAYERED);
LocalPInvoke.SetLayeredWindowAttributes(hwndMain, 0, 255, LocalPInvoke.LWA_ALPHA);
}
bool i = true;
IntPtr hwndPrevious = IntPtr.Zero;
while (i)
{
IntPtr hwndCurrent = LocalPInvoke.FindWindowExA(IntPtr.Zero, hwndPrevious, "Shell_SecondaryTrayWnd", null);
hwndPrevious = hwndCurrent;
if (hwndCurrent == IntPtr.Zero)
{
i = false;
}
else
{
LocalPInvoke.GetWindowRect(hwndCurrent, out LocalPInvoke.RECT rectCurrent);
LocalPInvoke.GetWindowRgn(hwndCurrent, out IntPtr hrgnCurrent);
IntPtr hwndSecTray = IntPtr.Zero;
if (isWindows11)
{
IntPtr imd = LocalPInvoke.FindWindowExA(hwndCurrent, IntPtr.Zero, "Windows.UI.Composition.DesktopWindowContentBridge", null);
hwndSecTray = LocalPInvoke.FindWindowExA(hwndCurrent, imd, "Windows.UI.Composition.DesktopWindowContentBridge", null);
}
else
{
hwndSecTray = LocalPInvoke.FindWindowExA(hwndCurrent, IntPtr.Zero, "TrayNotifyWnd", null); // Get handle to this secondary taskbar's tray
}
LocalPInvoke.GetWindowRect(hwndTray, out LocalPInvoke.RECT rectSecTray); // Get the RECT for this secondary taskbar's tray
IntPtr hwndWorkerW = LocalPInvoke.FindWindowExA(hwndCurrent, IntPtr.Zero, "WorkerW", null);
IntPtr hwndSecAppList = IntPtr.Zero;
// windows 11 22H2 has multiple WorkerW handles.
while (hwndWorkerW != IntPtr.Zero)
{
hwndSecAppList = LocalPInvoke.FindWindowExA(hwndWorkerW, IntPtr.Zero, "MSTaskListWClass", null); // Get the handle to the main taskbar's app list
if (hwndSecAppList != IntPtr.Zero)
{
break;
}
hwndWorkerW = LocalPInvoke.FindWindowExA(hwndCurrent, hwndWorkerW, "WorkerW", null);
}
LocalPInvoke.GetWindowRect(hwndSecAppList, out LocalPInvoke.RECT rectSecAppList);// Get the RECT for this secondary taskbar's app list
Types.AppListXaml appListSec = GetAppListSince23H2(hwndCurrent);
retVal.Add(new Types.Taskbar
{
AppListXaml = appListSec,
TaskbarHwnd = hwndCurrent,
TrayHwnd = hwndSecTray,
AppListHwnd = hwndSecAppList,
TaskbarRect = rectCurrent,
TrayRect = rectSecTray,
AppListRect = rectSecAppList,
RecoveryHrgn = hrgnCurrent,
ScaleFactor = Convert.ToDouble(LocalPInvoke.GetDpiForWindow(hwndCurrent)) / 96.00,
TaskbarRes = $"{rectCurrent.Right - rectCurrent.Left} x {rectCurrent.Bottom - rectCurrent.Top}",
Ignored = false,
IsSecondary = true,
});
style = LocalPInvoke.GetWindowLong(hwndCurrent, LocalPInvoke.GWL_EXSTYLE).ToInt32();
if ((style & LocalPInvoke.WS_EX_LAYERED) != LocalPInvoke.WS_EX_LAYERED)
{
LocalPInvoke.SetWindowLong(hwndCurrent, LocalPInvoke.GWL_EXSTYLE, LocalPInvoke.GetWindowLong(hwndCurrent, LocalPInvoke.GWL_EXSTYLE).ToInt32() ^ LocalPInvoke.WS_EX_LAYERED);
LocalPInvoke.SetLayeredWindowAttributes(hwndCurrent, 0, 255, LocalPInvoke.LWA_ALPHA);
}
}
}
//foreach (var tb in retVal)
//{
// TaskbarShouldBeFilled(tb.TaskbarHwnd);
//}
return retVal;
}
///
/// Checks if the given taskbar should be filled to the edge of the screen.
///
///
/// A bool indicating whether or not the taskbar needs to be filled.
///
public static bool TaskbarShouldBeFilled(IntPtr taskbarHwnd, Types.Settings settings)
{
bool retVal = false;
if (settings.FillOnMaximise)
{
// Attempt to check for if alt+tab/task switcher is open (Windows 11 only)
IntPtr topHwnd = LocalPInvoke.WindowFromPoint(new LocalPInvoke.POINT() { x = 0, y = 0 });
StringBuilder windowClass = new StringBuilder(1024);
try
{
LocalPInvoke.GetClassName(topHwnd, windowClass, 1024);
if (windowClass.ToString() == "XamlExplorerHostIslandWindow" && settings.FillOnTaskSwitch)
{
return true;
}
}
catch (Exception) { }
List windowList = Interaction.GetTopLevelWindows();
foreach (IntPtr windowHwnd in windowList)
{
if (LocalPInvoke.IsWindowVisible(windowHwnd))
{
if (LocalPInvoke.MonitorFromWindow(taskbarHwnd, 2) == LocalPInvoke.MonitorFromWindow(windowHwnd, 2))
{
LocalPInvoke.DwmGetWindowAttribute(windowHwnd, LocalPInvoke.DWMWINDOWATTRIBUTE.Cloaked, out bool isCloaked, 0x4);
if (!isCloaked)
{
LocalPInvoke.WINDOWPLACEMENT lpwndpl = new LocalPInvoke.WINDOWPLACEMENT();
LocalPInvoke.GetWindowPlacement(windowHwnd, ref lpwndpl);
if (lpwndpl.ShowCmd == LocalPInvoke.ShowWindowCommands.ShowMaximized)
{
retVal = true;
}
}
}
}
}
}
return retVal;
}
///
/// Sets the appbar properties of the taskbar.
///
public static void SetTaskbarState(LocalPInvoke.AppBarStates option, IntPtr hwnd)
{
LocalPInvoke.APPBARDATA msgData = new LocalPInvoke.APPBARDATA();
msgData.cbSize = (uint)Marshal.SizeOf(msgData);
msgData.hWnd = hwnd;
msgData.lParam = (int)option;
LocalPInvoke.SHAppBarMessage(LocalPInvoke.ABM.SetState, ref msgData);
}
}
}
================================================
FILE: RoundedTB/TaskbarEffect.xaml
================================================
================================================
FILE: RoundedTB/TaskbarEffect.xaml.cs
================================================
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Runtime.InteropServices;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Threading;
using System.ComponentModel;
using System.Threading;
namespace RoundedTB
{
///
/// Interaction logic for TaskbarEffect.xaml
///
public partial class TaskbarEffect : Window
{
BackgroundWorker backgroundWorker = new BackgroundWorker();
public POINT pOINT = new POINT();
public Point pp = new Point();
public TaskbarEffect()
{
InitializeComponent();
{ // Code for removing from Alt+Tab
Window w = new Window();
w.Top = -10000;
w.Left = -10000;
w.Width = 1;
w.Height = 1;
w.WindowStyle = WindowStyle.ToolWindow;
w.Show();
Owner = w;
w.Hide();
}
Show();
mwin.Top = 0;
mwin.Left = 0;
backgroundWorker.DoWork += new DoWorkEventHandler(backgroundWorker_DoWork);
backgroundWorker.RunWorkerAsync();
}
private void backgroundWorker_DoWork(object sender, DoWorkEventArgs e)
{
while (true)
{
Dispatcher.Invoke(DispatcherPriority.Normal, new Action(() => MoveTheThingy()));
Thread.Sleep(10);
}
}
public void MoveTheThingy()
{
GetCursorPos(out pOINT);
Point pp = mwin.PointFromScreen(pOINT);
Canvas.SetLeft(eye, pp.X - (eye.Width / 2));
Canvas.SetTop(eye, pp.Y - (eye.Height / 2));
}
[DllImport("user32.dll")]
public static extern bool GetCursorPos(out POINT lpPoint);
public struct POINT
{
public int X;
public int Y;
public static implicit operator Point(POINT point)
{
return new Point(point.X, point.Y);
}
}
}
}
================================================
FILE: RoundedTB/Types.cs
================================================
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Navigation;
using Interop.UIAutomationClient;
namespace RoundedTB
{
public class Types
{
public class Taskbar : IDisposable
{
public AppListXaml AppListXaml { get; set; }
public IntPtr TaskbarHwnd { get; set; } // Handle to the taskbar
public IntPtr TrayHwnd { get; set; } // Handle to the tray on the taskbar (if present)
public IntPtr AppListHwnd { get; set; } // Handle to the list of open/pinned apps on the taskbar
public LocalPInvoke.RECT TaskbarRect { get; set; } // Bounding box for the taskbar
public LocalPInvoke.RECT TrayRect { get; set; } // Bounding box for the tray (dynamic)
public LocalPInvoke.RECT AppListRect { get; set; } // Bounding box for the list of pinned & open apps (dynamic)
public IntPtr RecoveryHrgn { get; set; } // Pointer to the recovery region for any given taskbar. Defaults to IntPtr.Zero
public double ScaleFactor { get; set; } // The scale factor of the monitor the taskbar is on
public string TaskbarRes { get; set; } // Resolution of the taskbar as text
public bool Ignored { get; set; } // Specifies if the taskbar should be ignored when applying changes
public bool TaskbarHidden { get; set; } // Specifies if this taskbar is currently hidden by RTB
public bool TrayHidden { get; set; } // Specifies if the tray is currently hidden by RTB on this taskbar
public int AppListWidth { get; set; } // Specifies the width of the app list
public TaskbarEffect TaskbarEffectWindow { get; set; } // Unused clone to apply effects to the taskbar
public bool IsSecondary { get; set; }
public void Dispose()
{
AppListXaml.Dispose();
}
}
#nullable enable
public class AppListXaml : IDisposable
{
private IUIAutomationElement? _taskbarFrame;
private IUIAutomation? _uia;
private readonly IntPtr _hwndTaskbarMain;
// singleton checker
private static bool appListXamlAlreadyExists = false;
public bool ReloadRequired => (AppListXaml.appListXamlAlreadyExists && this._taskbarFrame == null);
public AppListXaml(IntPtr hwndTaskbarMain)
{
this._hwndTaskbarMain = hwndTaskbarMain;
this._uia = new CUIAutomation();
_taskbarFrame = GetTaskbarFrameElement(this._hwndTaskbarMain, this._uia);
}
private static IUIAutomationElement? GetTaskbarFrameElement(IntPtr hwndTaskbarMain, IUIAutomation uia)
{
IntPtr hwndDesktopXamlSrc = LocalPInvoke.FindWindowExA(hwndTaskbarMain, IntPtr.Zero, "Windows.UI.Composition.DesktopWindowContentBridge", null);
if (hwndDesktopXamlSrc == IntPtr.Zero)
{
return null;
}
IntPtr hwndWindowCls = LocalPInvoke.FindWindowExA(hwndDesktopXamlSrc, IntPtr.Zero, "Windows.UI.Input.InputSite.WindowClass", null);
if (hwndWindowCls == IntPtr.Zero)
{
return null;
}
IUIAutomationElement taskEle = uia.ElementFromHandle(hwndWindowCls);
IUIAutomationCondition con = uia.CreatePropertyCondition(UIA_PropertyIds.UIA_AutomationIdPropertyId, "TaskbarFrame");
IUIAutomationElement taskFrameEle = taskEle.FindFirst(Interop.UIAutomationClient.TreeScope.TreeScope_Children, con);
Marshal.ReleaseComObject(con);
Marshal.ReleaseComObject(taskEle);
AppListXaml.appListXamlAlreadyExists = true;
return taskFrameEle;
}
public void ReloadTaskbarFrameElement()
{
// When the taskbar is restarted, there's a possibility that XAML elements may not exist when the taskbar handle is created.
// Therefore, if XAML elements have been previously acquired, it's considered a restart, and we attempt to retrieve XAML again.
if (_uia == null)
{
return;
}
_taskbarFrame = GetTaskbarFrameElement(_hwndTaskbarMain, _uia);
}
public LocalPInvoke.RECT? GetWindowRect()
{
if (_taskbarFrame == null || _uia == null)
{
return null;
}
if (!LocalPInvoke.IsWindow(_hwndTaskbarMain))
{
return null;
}
IUIAutomationElementArray? children = null;
IUIAutomationElement? child = null;
try
{
children = _taskbarFrame.FindAll(
Interop.UIAutomationClient.TreeScope.TreeScope_Children,
_uia.CreateTrueCondition());
tagRECT? leftRect = null;
tagRECT? rightRect = null;
int len = children.Length;
if (len == 0)
{
return null;
}
for (int i = 0; i < len; i++)
{
child = children.GetElement(i);
tagRECT r = child.CurrentBoundingRectangle;
if (leftRect == null || r.left < leftRect.Value.left)
{
leftRect = r;
}
if (rightRect == null || rightRect.Value.right < r.right)
{
rightRect = r;
}
Marshal.ReleaseComObject(child);
child = null;
}
if (leftRect == null || rightRect == null)
{
return null;
}
LocalPInvoke.RECT rect = new()
{
Left = (int)leftRect.Value.left,
Top = (int)leftRect.Value.top,
Right = (int)rightRect.Value.right,
Bottom = (int)leftRect.Value.bottom,
};
return rect;
}
catch (Exception)
{
// TODO: write log.
// An error occurs at here, the AppListXaml object will be recreated, so not reqire actions.
return null;
}
finally
{
if (child != null)
{
Marshal.ReleaseComObject(child);
}
if (children != null)
{
Marshal.ReleaseComObject(children);
}
}
}
public void Dispose()
{
if (_taskbarFrame != null)
{
Marshal.ReleaseComObject(_taskbarFrame);
_taskbarFrame = null;
}
if (_uia != null)
{
Marshal.ReleaseComObject(_uia);
_uia = null;
}
}
}
#nullable restore
public class Settings
{
public int Version { get; set; }
public SegmentSettings SimpleTaskbarLayout { get; set; }
public SegmentSettings DynamicAppListLayout { get; set; }
public SegmentSettings DynamicTrayLayout { get; set; }
public SegmentSettings DynamicWidgetsLayout { get; set; }
public SegmentSettings DynamicSecondaryClockLayout { get; set; }
public int WidgetsWidth { get; set; }
public int ClockWidth { get; set; }
public bool IsDynamic { get; set; }
public bool IsCentred { get; set; }
public bool IsWindows11 { get; set; }
public bool ShowTray { get; set; }
public bool ShowWidgets { get; set; }
public bool ShowSecondaryClock { get; set; }
public bool CompositionCompat { get; set; }
public bool IsNotFirstLaunch { get; set; }
public bool FillOnMaximise { get; set; }
public bool FillOnTaskSwitch { get; set; }
public bool ShowSegmentsOnHover { get; set; }
public int AutoHide { get; set; }
}
public class EffectiveRegion
{
public int CornerRadius { get; set; }
public int Top { get; set; }
public int Left { get; set; }
public int Width { get; set; }
public int Height { get; set; }
}
public class SegmentSettings
{
public int CornerRadius { get; set; }
public int MarginTop { get; set; }
public int MarginLeft { get; set; }
public int MarginBottom { get; set; }
public int MarginRight { get; set; }
}
public enum TrayMode
{
Show = 0,
Hide = 1,
AutoHide = 2,
}
public enum CompositionMode
{
None = 0,
TranslucentTB = 1,
Legacy = 2,
}
public enum KeyModifier
{
None = 0,
Alt = 1,
Control = 2,
Shift = 4,
WinKey = 8
}
}
}
================================================
FILE: RoundedTB/app.manifest
================================================
UTF-8
PerMonitorV2
SegmentHeap
true
================================================
FILE: RoundedTB.sln
================================================
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31423.177
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RoundedTB", "RoundedTB\RoundedTB.csproj", "{52C15E53-9E25-4847-8522-8BA77B08106F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6C4D12A6-8741-4A9E-A343-381E9ED3A952}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
Release|x86 = Release|x86
Remote Debug|Any CPU = Remote Debug|Any CPU
Remote Debug|ARM = Remote Debug|ARM
Remote Debug|ARM64 = Remote Debug|ARM64
Remote Debug|x64 = Remote Debug|x64
Remote Debug|x86 = Remote Debug|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{52C15E53-9E25-4847-8522-8BA77B08106F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Debug|ARM.ActiveCfg = Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Debug|ARM.Build.0 = Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Debug|ARM64.Build.0 = Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Debug|x64.ActiveCfg = Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Debug|x64.Build.0 = Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Debug|x86.ActiveCfg = Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Debug|x86.Build.0 = Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Release|Any CPU.Build.0 = Release|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Release|ARM.ActiveCfg = Release|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Release|ARM.Build.0 = Release|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Release|ARM64.ActiveCfg = Release|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Release|ARM64.Build.0 = Release|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Release|x64.ActiveCfg = Release|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Release|x64.Build.0 = Release|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Release|x86.ActiveCfg = Release|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Release|x86.Build.0 = Release|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Remote Debug|Any CPU.ActiveCfg = Remote Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Remote Debug|Any CPU.Build.0 = Remote Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Remote Debug|ARM.ActiveCfg = Remote Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Remote Debug|ARM.Build.0 = Remote Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Remote Debug|ARM64.ActiveCfg = Remote Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Remote Debug|ARM64.Build.0 = Remote Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Remote Debug|x64.ActiveCfg = Remote Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Remote Debug|x64.Build.0 = Remote Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Remote Debug|x86.ActiveCfg = Remote Debug|Any CPU
{52C15E53-9E25-4847-8522-8BA77B08106F}.Remote Debug|x86.Build.0 = Remote Debug|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {DA142517-2AAB-4F18-A60B-23F80035D8E0}
EndGlobalSection
EndGlobal
================================================
FILE: upgrade-assistant.clef
================================================
{"@t":"2022-01-30T04:07:25.0356602Z","@mt":"Hosting starting","@l":"Debug","EventId":{"Id":1,"Name":"Starting"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2022-01-30T04:07:25.0649528Z","@mt":"Configuration loaded from context base directory: {BaseDirectory}","@l":"Debug","BaseDirectory":"C:\\Users\\Torch\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.261602\\upgrade-assistant\\0.3.261602\\tools\\net6.0\\any\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleRunner"}
{"@t":"2022-01-30T04:07:25.0779977Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"NuGet","Location":"C:\\Users\\Torch\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.261602\\upgrade-assistant\\0.3.261602\\tools\\net6.0\\any\\extensions\\nuget","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-01-30T04:07:25.0827679Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Default","Location":"C:\\Users\\Torch\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.261602\\upgrade-assistant\\0.3.261602\\tools\\net6.0\\any\\extensions\\default","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-01-30T04:07:25.0830157Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"VB","Location":"C:\\Users\\Torch\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.261602\\upgrade-assistant\\0.3.261602\\tools\\net6.0\\any\\extensions\\vb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-01-30T04:07:25.0834298Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Web","Location":"C:\\Users\\Torch\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.261602\\upgrade-assistant\\0.3.261602\\tools\\net6.0\\any\\extensions\\web","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-01-30T04:07:25.0836471Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"windows","Location":"C:\\Users\\Torch\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.261602\\upgrade-assistant\\0.3.261602\\tools\\net6.0\\any\\extensions\\windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-01-30T04:07:25.0851415Z","@mt":"Loaded {Count} extensions","Count":5,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-01-30T04:07:25.1438728Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGeteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.1786496Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGeteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.2222510Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGeteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.2562959Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGeteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.2986344Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGeteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.3345042Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.ProjectModel, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGeteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.3897370Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaulteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.4098693Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaulteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.4362938Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaulteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.4727006Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaulteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.4911209Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaulteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.5126928Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Source, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaulteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.5358280Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaulteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.5658561Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaulteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.6088914Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.CodeFixes, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaulteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.6825187Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Webeaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.7207535Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.AspNetCore.Razor.Language, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Webeaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.7656015Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"DiffPlex, Version=1.6.3.0, Culture=neutral, PublicKeyToken=1d35e91d1bd7bc0f","Extension":"UA_Webeaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:25.8518104Z","@mt":"Using Visual Studio v{VsVersion} [{VsPath}]","@l":"Debug","VsVersion":"17.0.32112.339","VsPath":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.VisualStudioFinder"}
{"@t":"2022-01-30T04:07:25.9915100Z","@mt":"Using MSBuild from {Path}","Path":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2022-01-30T04:07:25.9925931Z","@mt":"Using Visual Studio install from {Path} [v{Version}]","Path":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community","Version":17,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2022-01-30T04:07:26.1350692Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Credentials, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGeteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:26.1660620Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Configuration, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGeteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:26.3353153Z","@mt":"Generating context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2022-01-30T04:07:26.3773435Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.resources, Version=15.1.0.0, Culture=en-GB, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:07:26.3880673Z","@mt":"Initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2022-01-30T04:07:27.1417224Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.Tasks.Core.resources, Version=15.1.0.0, Culture=en-GB, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:07:27.4180926Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.MSBuild.resources, Version=3.8.0.0, Culture=en-GB, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:07:27.4183136Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.MSBuild.resources, Version=3.8.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:07:27.4195075Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net6.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net6.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:07:27.5633344Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.resources, Version=3.8.0.0, Culture=en-GB, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:07:27.5635410Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.resources, Version=3.8.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:07:27.5638688Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:07:27.5775857Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.resources, Version=3.8.0.0, Culture=en-GB, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:07:27.5778602Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.resources, Version=3.8.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:07:27.6907987Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.CSharp.Workspaces.resources, Version=3.8.0.0, Culture=en-GB, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:07:27.6909906Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.CSharp.Workspaces.resources, Version=3.8.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:07:27.6975689Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.CSharp.Workspaces.resources, Version=3.8.0.0, Culture=en-GB, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:07:27.6977383Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.CSharp.Workspaces.resources, Version=3.8.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:07:27.7461171Z","@mt":"Done initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2022-01-30T04:07:27.9119228Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net6.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2022-01-30T04:07:27.9160271Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2022-01-30T04:07:28.2985133Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:07:28.5530501Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Restored C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj (in 161 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:07:28.7040374Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\NuGet\\17.0\\Microsoft.NuGet.targets: (198, 5): Your project file doesn't list 'win' as a \"RuntimeIdentifier\". You should add 'win' to the \"RuntimeIdentifiers\" property in your project file and then re-run NuGet restore.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:07:28.7041162Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\NuGet\\17.0\\Microsoft.NuGet.targets: (198, 5): Your project file doesn't list 'win' as a \"RuntimeIdentifier\". You should add 'win' to the \"RuntimeIdentifiers\" property in your project file and then re-run NuGet restore.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:07:28.7041355Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net6.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net6.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:07:28.7054677Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:07:28.7675204Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:07:28.7707215Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:07:28.7826641Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed","Extension":"UA_NuGeteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:28.8819031Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.LibraryModel, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGeteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:28.9423549Z","@mt":"Marking package {PackageName} for removal because it appears to be a transitive dependency","PackageName":"Microsoft.Windows.SDK.Contracts","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TransitiveReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:28.9541917Z","@mt":"Marking package {PackageName} for removal because it appears to be a transitive dependency","PackageName":"System.Runtime.WindowsRuntime","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TransitiveReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:28.9570206Z","@mt":"Marking package {PackageName} for removal because it appears to be a transitive dependency","PackageName":"System.Runtime.WindowsRuntime.UI.Xaml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TransitiveReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:28.9595478Z","@mt":"Marking package {PackageName} for removal because it appears to be a transitive dependency","PackageName":"System.ValueTuple","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TransitiveReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:28.9631462Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:07:28.9683790Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:07:28.9766025Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers, Version=1.2.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\DesktopBridge.Helpers\\1.2.1\\DesktopBridge.Helpers.1.2.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0083654Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers.1.2.1","TargetFrameworks":[".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0096264Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers, Version=1.2.1","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:29.0097780Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf, Version=1.1.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Hardcodet.NotifyIcon.Wpf\\1.1.0\\Hardcodet.NotifyIcon.Wpf.1.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0207278Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf.1.1.0","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0",".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2",".NETFramework,Version=v4.7.2"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0208844Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf, Version=1.1.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:29.0210163Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient, Version=10.19041.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Interop.UIAutomationClient\\10.19041.0\\Interop.UIAutomationClient.10.19041.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0309374Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient.10.19041.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0310573Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient, Version=10.19041.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:29.0311683Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore, Version=10.19041.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Interop.UIAutomationCore\\10.19041.0\\Interop.UIAutomationCore.10.19041.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0406782Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore.10.19041.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0407740Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore, Version=10.19041.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:29.0408989Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"ModernWpfUI, Version=0.9.4","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\ModernWpfUI\\0.9.4\\ModernWpfUI.0.9.4.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0567974Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"ModernWpfUI.0.9.4","TargetFrameworks":[".NETCoreApp,Version=v3.0","net5.0-windows10.0.18362",".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0569918Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"ModernWpfUI, Version=0.9.4","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:29.0571220Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Newtonsoft.Json, Version=13.0.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Newtonsoft.Json\\13.0.1\\Newtonsoft.Json.13.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0675379Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Newtonsoft.Json.13.0.1","TargetFrameworks":[".NETFramework,Version=v2.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v1.0",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0677271Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Newtonsoft.Json, Version=13.0.1","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:29.0678862Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"PInvoke.User32, Version=0.7.104","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\PInvoke.User32\\0.7.104\\PInvoke.User32.0.7.104.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0778576Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"PInvoke.User32.0.7.104","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0","UAP,Version=v10.0.16299"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0779526Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"PInvoke.User32, Version=0.7.104","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:29.0780216Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"WPF-UI, Version=1.2.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\WPF-UI\\1.2.1\\WPF-UI.1.2.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0783951Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"WPF-UI.1.2.1","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0","net6.0-windows7.0",".NETFramework,Version=v4.6",".NETFramework,Version=v4.7",".NETFramework,Version=v4.8"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.0784401Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"WPF-UI, Version=1.2.1","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:29.0785850Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:07:29.0852279Z","@mt":"Found package sources: {PackageSources}","@l":"Debug","PackageSources":["https://api.nuget.org/v3/index.json [https://api.nuget.org/v3/index.json]"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetPackageSourceFactory"}
{"@t":"2022-01-30T04:07:29.1952093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.7637657Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 563ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:29.8989399Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}, version {AnalyzerPackageVersion}) needs to be added","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","AnalyzerPackageVersion":"0.3.261602","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:29.9008961Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:07:29.9118417Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.windows.compatibility/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:30.3225988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.windows.compatibility/index.json 410ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:07:31.0963026Z","@mt":"Adding {PackageName} {Version}","PackageName":"Microsoft.Windows.Compatibility","Version":"6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.WindowsCompatReferenceAnalyzer"}
{"@t":"2022-01-30T04:07:31.0981240Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:07:31.1011242Z","@mt":"None of the tfms match packages from {PackageName}","@l":"Debug","PackageName":"System.Configuration.ConfigurationManager","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2022-01-30T04:07:31.1011724Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:07:31.1166306Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"RoundedTB","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2022-01-30T04:07:31.1310156Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.Common, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaulteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:32.6575713Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"RoundedTB","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2022-01-30T04:07:32.6680009Z","@mt":"Winforms Updater not applicable to the project(s) selected","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsResultProvider"}
{"@t":"2022-01-30T04:07:32.7881973Z","@mt":"Hosting started","@l":"Debug","EventId":{"Id":2,"Name":"Started"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2022-01-30T04:07:32.7912055Z","@mt":"Hosting stopping","@l":"Debug","EventId":{"Id":3,"Name":"Stopping"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2022-01-30T04:07:32.7915052Z","@mt":"Hosting stopped","@l":"Debug","EventId":{"Id":4,"Name":"Stopped"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2022-01-30T04:07:32.7945908Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_NuGeteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:32.7947085Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_Defaulteaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:32.7947275Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_VBeaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:32.7947352Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_Webeaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:07:32.7947424Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_windowseaf2560a741548aabd2e377ce8391fd8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.4328019Z","@mt":"Hosting starting","@l":"Debug","EventId":{"Id":1,"Name":"Starting"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2022-01-30T04:08:17.4634111Z","@mt":"Configuration loaded from context base directory: {BaseDirectory}","@l":"Debug","BaseDirectory":"C:\\Users\\Torch\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.261602\\upgrade-assistant\\0.3.261602\\tools\\net6.0\\any\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleRunner"}
{"@t":"2022-01-30T04:08:17.4946265Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"NuGet","Location":"C:\\Users\\Torch\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.261602\\upgrade-assistant\\0.3.261602\\tools\\net6.0\\any\\extensions\\nuget","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-01-30T04:08:17.4950782Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Default","Location":"C:\\Users\\Torch\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.261602\\upgrade-assistant\\0.3.261602\\tools\\net6.0\\any\\extensions\\default","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-01-30T04:08:17.4953638Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"VB","Location":"C:\\Users\\Torch\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.261602\\upgrade-assistant\\0.3.261602\\tools\\net6.0\\any\\extensions\\vb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-01-30T04:08:17.4957773Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Web","Location":"C:\\Users\\Torch\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.261602\\upgrade-assistant\\0.3.261602\\tools\\net6.0\\any\\extensions\\web","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-01-30T04:08:17.4960178Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"windows","Location":"C:\\Users\\Torch\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.261602\\upgrade-assistant\\0.3.261602\\tools\\net6.0\\any\\extensions\\windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-01-30T04:08:17.4976080Z","@mt":"Loaded {Count} extensions","Count":5,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-01-30T04:08:17.5549275Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.5908790Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.6350217Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.6706736Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.7131859Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.7481290Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.ProjectModel, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.8053145Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.8268773Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.8535783Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.8935572Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.9133467Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.9362735Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Source, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.9609937Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:17.9924356Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:18.0367232Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.CodeFixes, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:18.1128214Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Web2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:18.1513632Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.AspNetCore.Razor.Language, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Web2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:18.2086914Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"DiffPlex, Version=1.6.3.0, Culture=neutral, PublicKeyToken=1d35e91d1bd7bc0f","Extension":"UA_Web2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:18.2939560Z","@mt":"Using Visual Studio v{VsVersion} [{VsPath}]","@l":"Debug","VsVersion":"17.0.32112.339","VsPath":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.VisualStudioFinder"}
{"@t":"2022-01-30T04:08:18.4164446Z","@mt":"Using MSBuild from {Path}","Path":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2022-01-30T04:08:18.4177699Z","@mt":"Using Visual Studio install from {Path} [v{Version}]","Path":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community","Version":17,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2022-01-30T04:08:18.5798511Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Credentials, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:18.6133501Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Configuration, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:18.8503830Z","@mt":"Loading {Name} with pdb from {Extension}","@l":"Debug","Name":"MSBuild.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:18.9564926Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9565735Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9566060Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9566487Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9566840Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9567127Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9567417Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9567741Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9568133Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9568454Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9568842Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9569147Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9569473Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.VisualBasicProjectUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9569838Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor.RazorUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9570142Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9587881Z","@mt":"Finished ordering upgrade steps: {UpgradeStepList}","@l":"Debug","UpgradeStepList":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep, Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep, Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep, Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep, Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep, Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.VisualBasicProjectUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep, Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Razor.RazorUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep, Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-01-30T04:08:18.9644549Z","@mt":"Generating context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2022-01-30T04:08:18.9904496Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.resources, Version=15.1.0.0, Culture=en-GB, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:08:19.0007796Z","@mt":"Initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2022-01-30T04:08:19.7183292Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.Tasks.Core.resources, Version=15.1.0.0, Culture=en-GB, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:08:19.7866771Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.MSBuild.resources, Version=3.8.0.0, Culture=en-GB, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:08:19.7868827Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.MSBuild.resources, Version=3.8.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:08:19.7879159Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\NuGet\\17.0\\Microsoft.NuGet.targets: (198, 5): Your project file doesn't list 'win' as a \"RuntimeIdentifier\". You should add 'win' to the \"RuntimeIdentifiers\" property in your project file and then re-run NuGet restore.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:08:19.7880295Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\NuGet\\17.0\\Microsoft.NuGet.targets: (198, 5): Your project file doesn't list 'win' as a \"RuntimeIdentifier\". You should add 'win' to the \"RuntimeIdentifiers\" property in your project file and then re-run NuGet restore.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:08:19.7880543Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net6.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net6.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:08:19.8837115Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.resources, Version=3.8.0.0, Culture=en-GB, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:08:19.8838937Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.resources, Version=3.8.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:08:19.8841118Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:08:19.8953543Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.resources, Version=3.8.0.0, Culture=en-GB, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:08:19.8955093Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.resources, Version=3.8.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:08:19.9900064Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.CSharp.Workspaces.resources, Version=3.8.0.0, Culture=en-GB, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:08:19.9901969Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.CSharp.Workspaces.resources, Version=3.8.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:08:19.9954407Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.CSharp.Workspaces.resources, Version=3.8.0.0, Culture=en-GB, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:08:19.9955511Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.CSharp.Workspaces.resources, Version=3.8.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:08:20.0367852Z","@mt":"Done initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2022-01-30T04:08:20.1662912Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:08:20.1692595Z","@mt":"Setting entrypoint to only project in solution: {Project}","Project":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep"}
{"@t":"2022-01-30T04:08:20.1708739Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:08:20.1767871Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:08:20.1972333Z","@mt":"Setting only project in solution as the current project: {Project}","@l":"Debug","Project":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
{"@t":"2022-01-30T04:08:20.1980416Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:08:20.1982851Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:08:20.2024598Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2022-01-30T04:08:20.2025834Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\Users\\Torch\\source\\repos\\RoundedTB.backup\\RoundedTB","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2022-01-30T04:08:20.2026315Z","@mt":"Backup upgrade step initialized as incomplete; will backup to {BackupLocation}","@l":"Debug","BackupLocation":"C:\\Users\\Torch\\source\\repos\\RoundedTB.backup\\RoundedTB","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2022-01-30T04:08:20.2028096Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:08:20.2028602Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:08:20.2538166Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.Common, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:08:35.1815959Z","@mt":"Skipping upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2022-01-30T04:08:35.1828151Z","@mt":"Upgrade step {StepTitle} skipped","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2022-01-30T04:08:41.6545299Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:08:41.6581352Z","@mt":"Project {ProjectPath} not yet converted","@l":"Debug","ProjectPath":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep"}
{"@t":"2022-01-30T04:08:41.6587760Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:08:41.6587969Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:10:02.5035047Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"System.Net.Sockets.resources, Version=6.0.0.0, Culture=en-GB, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:10:02.5036951Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"System.Net.Sockets.resources, Version=6.0.0.0, Culture=en, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:11:14.3874237Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep"}
{"@t":"2022-01-30T04:11:14.3931049Z","@mt":"Converting project file format with try-convert, version 0.3.261602+8aa571efd8bac422c95c35df9c7b9567ad534ad0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep"}
{"@t":"2022-01-30T04:11:14.3948306Z","@mt":"Loading {Name} with pdb from {Extension}","@l":"Debug","Name":"MSBuild.Conversion.Project, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:11:14.4423981Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net6.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2022-01-30T04:11:14.4582548Z","@mt":"Loading {Name} with pdb from {Extension}","@l":"Debug","Name":"MSBuild.Conversion.Facts, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:11:15.0716325Z","@mt":"Converting project {Path} to SDK style","Path":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertInProcessTool"}
{"@t":"2022-01-30T04:11:15.0771939Z","@mt":"Loading {Name} with pdb from {Extension}","@l":"Debug","Name":"MSBuild.Conversion.Package, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:11:16.2145947Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"NuGet.ProjectModel.resources, Version=6.0.0.280, Culture=en-GB, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:11:16.2147525Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"NuGet.ProjectModel.resources, Version=6.0.0.280, Culture=en, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2022-01-30T04:11:16.3655608Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.PackageDependencyResolution.targets: (267, 5): Error reading assets file: Error loading lock file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\obj\\project.assets.json' : Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:16.3656312Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Microsoft.Common.CurrentVersion.targets: (2929, 5): MSB4803: The task \"ResolveComReference\" is not supported on the .NET Core version of MSBuild. Please use the .NET Framework version of MSBuild. See https://aka.ms/msbuild/MSB4803 for further details.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:16.3656521Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Microsoft.CSharp.CurrentVersion.targets: (130, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:16.3839264Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:16.3884559Z","@mt":"Project file converted successfully! The project may require additional changes to build successfully against the new .NET target.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep"}
{"@t":"2022-01-30T04:11:16.3911925Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2022-01-30T04:11:16.8897662Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:17.1967664Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Restored C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj (in 176 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:17.3644813Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.PackageDependencyResolution.targets: (267, 5): Error reading assets file: Error loading lock file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\obj\\project.assets.json' : Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:17.3645381Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Microsoft.Common.CurrentVersion.targets: (2929, 5): MSB4803: The task \"ResolveComReference\" is not supported on the .NET Core version of MSBuild. Please use the .NET Framework version of MSBuild. See https://aka.ms/msbuild/MSB4803 for further details.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:17.3645517Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Microsoft.CSharp.CurrentVersion.targets: (130, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:17.3727005Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:17.3752768Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep"}
{"@t":"2022-01-30T04:11:18.8680262Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:18.8742248Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2022-01-30T04:11:19.3640061Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:19.4851330Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" All projects are up-to-date for restore.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:19.6209505Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.PackageDependencyResolution.targets: (267, 5): Error reading assets file: Error loading lock file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\obj\\project.assets.json' : Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:19.6210139Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Microsoft.Common.CurrentVersion.targets: (2929, 5): MSB4803: The task \"ResolveComReference\" is not supported on the .NET Core version of MSBuild. Please use the .NET Framework version of MSBuild. See https://aka.ms/msbuild/MSB4803 for further details.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:19.6210273Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Microsoft.CSharp.CurrentVersion.targets: (130, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:19.6292635Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:19.7043795Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:19.7062648Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:19.7176735Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed","Extension":"UA_NuGet2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:11:19.8193157Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.LibraryModel, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:11:19.8963022Z","@mt":"Marking package {PackageName} for removal because it appears to be a transitive dependency","PackageName":"Microsoft.Windows.SDK.Contracts","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TransitiveReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:19.9322909Z","@mt":"Marking package {PackageName} for removal because it appears to be a transitive dependency","PackageName":"System.Runtime.WindowsRuntime","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TransitiveReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:19.9356559Z","@mt":"Marking package {PackageName} for removal because it appears to be a transitive dependency","PackageName":"System.Runtime.WindowsRuntime.UI.Xaml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TransitiveReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:19.9388357Z","@mt":"Marking package {PackageName} for removal because it appears to be a transitive dependency","PackageName":"System.ValueTuple","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TransitiveReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:19.9422160Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:19.9472551Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:19.9564527Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers, Version=1.2.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\DesktopBridge.Helpers\\1.2.1\\DesktopBridge.Helpers.1.2.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9781171Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers.1.2.1","TargetFrameworks":[".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9793154Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers, Version=1.2.1","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:19.9794348Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf, Version=1.1.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Hardcodet.NotifyIcon.Wpf\\1.1.0\\Hardcodet.NotifyIcon.Wpf.1.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9799289Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf.1.1.0","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0",".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2",".NETFramework,Version=v4.7.2"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9800852Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf, Version=1.1.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:19.9801603Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient, Version=10.19041.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Interop.UIAutomationClient\\10.19041.0\\Interop.UIAutomationClient.10.19041.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9803831Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient.10.19041.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9805015Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient, Version=10.19041.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:19.9805630Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore, Version=10.19041.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Interop.UIAutomationCore\\10.19041.0\\Interop.UIAutomationCore.10.19041.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9807549Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore.10.19041.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9809763Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore, Version=10.19041.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:19.9810346Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Microsoft.CSharp\\4.7.0\\Microsoft.CSharp.4.7.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9902966Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.CSharp.4.7.0","TargetFrameworks":[".NETCore,Version=v5.0",".NETCoreApp,Version=v2.0",".NETFramework,Version=v4.5",".NETPortable,Version=v0.0,Profile=Profile259",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0","MonoAndroid,Version=v1.0","MonoTouch,Version=v1.0","UAP,Version=v10.0.16299","Windows,Version=v8.0","WindowsPhone,Version=v8.0","WindowsPhoneApp,Version=v8.1","Xamarin.iOS,Version=v1.0","Xamarin.Mac,Version=v2.0","Xamarin.TVOS,Version=v1.0","Xamarin.WatchOS,Version=v1.0",".NETStandard,Version=v1.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9904554Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:19.9905411Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"ModernWpfUI, Version=0.9.4","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\ModernWpfUI\\0.9.4\\ModernWpfUI.0.9.4.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9940806Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"ModernWpfUI.0.9.4","TargetFrameworks":[".NETCoreApp,Version=v3.0","net5.0-windows10.0.18362",".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9941815Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"ModernWpfUI, Version=0.9.4","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:19.9942368Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Newtonsoft.Json, Version=13.0.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Newtonsoft.Json\\13.0.1\\Newtonsoft.Json.13.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9945218Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Newtonsoft.Json.13.0.1","TargetFrameworks":[".NETFramework,Version=v2.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v1.0",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9946024Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Newtonsoft.Json, Version=13.0.1","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:19.9946537Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"PInvoke.User32, Version=0.7.104","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\PInvoke.User32\\0.7.104\\PInvoke.User32.0.7.104.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9949973Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"PInvoke.User32.0.7.104","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0","UAP,Version=v10.0.16299"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:19.9950356Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"PInvoke.User32, Version=0.7.104","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:19.9951160Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.ComponentModel.Composition, Version=6.0.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\System.ComponentModel.Composition\\6.0.0\\System.ComponentModel.Composition.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:20.0055530Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.ComponentModel.Composition.6.0.0","TargetFrameworks":[".NETCoreApp,Version=v3.1","net6.0",".NETFramework,Version=v4.6.1",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:20.0057032Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.ComponentModel.Composition, Version=6.0.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:20.0057789Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\System.Data.DataSetExtensions\\4.5.0\\System.Data.DataSetExtensions.4.5.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:20.0060021Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions.4.5.0","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:20.0060399Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:20.0061070Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"WPF-UI, Version=1.2.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\WPF-UI\\1.2.1\\WPF-UI.1.2.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:20.0063695Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"WPF-UI.1.2.1","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0","net6.0-windows7.0",".NETFramework,Version=v4.6",".NETFramework,Version=v4.7",".NETFramework,Version=v4.8"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:20.0064800Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"WPF-UI, Version=1.2.1","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:20.0066232Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:20.0134264Z","@mt":"Found package sources: {PackageSources}","@l":"Debug","PackageSources":["https://api.nuget.org/v3/index.json [https://api.nuget.org/v3/index.json]"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetPackageSourceFactory"}
{"@t":"2022-01-30T04:11:20.1158077Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:20.6058396Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 485ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:20.7387199Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}, version {AnalyzerPackageVersion}) needs to be added","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","AnalyzerPackageVersion":"0.3.261602","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:20.7409660Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:20.7436942Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:20.7464821Z","@mt":"None of the tfms match packages from {PackageName}","@l":"Debug","PackageName":"System.Configuration.ConfigurationManager","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2022-01-30T04:11:20.7465693Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:20.7517070Z","@mt":"Packages to be removed: {Packages}","Packages":"Microsoft.Windows.SDK.Contracts, Version=10.0.18362.2005\r\nSystem.Runtime.WindowsRuntime, Version=4.6.0\r\nSystem.Runtime.WindowsRuntime.UI.Xaml, Version=4.6.0\r\nSystem.ValueTuple, Version=4.5.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-01-30T04:11:20.7530520Z","@mt":"Packages to be added: {Packages}","Packages":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.261602","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-01-30T04:11:20.7548878Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:20.7551543Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:23.4142031Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-01-30T04:11:23.4197296Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Microsoft.Windows.SDK.Contracts, Version=10.0.18362.2005","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:23.4210339Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"System.Runtime.WindowsRuntime, Version=4.6.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:23.4220918Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"System.Runtime.WindowsRuntime.UI.Xaml, Version=4.6.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:23.4230766Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"System.ValueTuple, Version=4.5.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:23.4246130Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.261602","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:23.4267780Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:23.5333749Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.PackageDependencyResolution.targets: (267, 5): Error reading assets file: Error loading lock file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\obj\\project.assets.json' : Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:23.5334548Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Microsoft.Common.CurrentVersion.targets: (2929, 5): MSB4803: The task \"ResolveComReference\" is not supported on the .NET Core version of MSBuild. Please use the .NET Framework version of MSBuild. See https://aka.ms/msbuild/MSB4803 for further details.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:23.5334702Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Microsoft.CSharp.CurrentVersion.targets: (130, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:23.5494296Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:23.5522758Z","@mt":"Re-running analysis to check whether additional changes are needed","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-01-30T04:11:23.5523900Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2022-01-30T04:11:24.0374759Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:24.3499535Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Restored C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj (in 202 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:24.5229329Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.PackageDependencyResolution.targets: (267, 5): Error reading assets file: Error loading lock file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\obj\\project.assets.json' : Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:24.5230525Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Microsoft.Common.CurrentVersion.targets: (2929, 5): MSB4803: The task \"ResolveComReference\" is not supported on the .NET Core version of MSBuild. Please use the .NET Framework version of MSBuild. See https://aka.ms/msbuild/MSB4803 for further details.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:24.5230693Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Microsoft.CSharp.CurrentVersion.targets: (130, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:24.5318327Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:24.6137832Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:24.6139777Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:24.6586351Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:24.6587455Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:24.6588220Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers, Version=1.2.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\DesktopBridge.Helpers\\1.2.1\\DesktopBridge.Helpers.1.2.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6591058Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers.1.2.1","TargetFrameworks":[".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6591484Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers, Version=1.2.1","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6591979Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf, Version=1.1.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Hardcodet.NotifyIcon.Wpf\\1.1.0\\Hardcodet.NotifyIcon.Wpf.1.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6594918Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf.1.1.0","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0",".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2",".NETFramework,Version=v4.7.2"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6595434Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf, Version=1.1.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6595941Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient, Version=10.19041.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Interop.UIAutomationClient\\10.19041.0\\Interop.UIAutomationClient.10.19041.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6597922Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient.10.19041.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6598334Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient, Version=10.19041.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6598808Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore, Version=10.19041.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Interop.UIAutomationCore\\10.19041.0\\Interop.UIAutomationCore.10.19041.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6600575Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore.10.19041.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6600950Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore, Version=10.19041.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6601444Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Microsoft.CSharp\\4.7.0\\Microsoft.CSharp.4.7.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6606407Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.CSharp.4.7.0","TargetFrameworks":[".NETCore,Version=v5.0",".NETCoreApp,Version=v2.0",".NETFramework,Version=v4.5",".NETPortable,Version=v0.0,Profile=Profile259",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0","MonoAndroid,Version=v1.0","MonoTouch,Version=v1.0","UAP,Version=v10.0.16299","Windows,Version=v8.0","WindowsPhone,Version=v8.0","WindowsPhoneApp,Version=v8.1","Xamarin.iOS,Version=v1.0","Xamarin.Mac,Version=v2.0","Xamarin.TVOS,Version=v1.0","Xamarin.WatchOS,Version=v1.0",".NETStandard,Version=v1.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6607134Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6607660Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"ModernWpfUI, Version=0.9.4","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\ModernWpfUI\\0.9.4\\ModernWpfUI.0.9.4.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6629839Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"ModernWpfUI.0.9.4","TargetFrameworks":[".NETCoreApp,Version=v3.0","net5.0-windows10.0.18362",".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6630260Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"ModernWpfUI, Version=0.9.4","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6630771Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Newtonsoft.Json, Version=13.0.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Newtonsoft.Json\\13.0.1\\Newtonsoft.Json.13.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6633432Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Newtonsoft.Json.13.0.1","TargetFrameworks":[".NETFramework,Version=v2.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v1.0",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6633811Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Newtonsoft.Json, Version=13.0.1","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6634296Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"PInvoke.User32, Version=0.7.104","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\PInvoke.User32\\0.7.104\\PInvoke.User32.0.7.104.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6636624Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"PInvoke.User32.0.7.104","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0","UAP,Version=v10.0.16299"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6636984Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"PInvoke.User32, Version=0.7.104","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6637473Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.ComponentModel.Composition, Version=6.0.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\System.ComponentModel.Composition\\6.0.0\\System.ComponentModel.Composition.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6639448Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.ComponentModel.Composition.6.0.0","TargetFrameworks":[".NETCoreApp,Version=v3.1","net6.0",".NETFramework,Version=v4.6.1",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6640183Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.ComponentModel.Composition, Version=6.0.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6640682Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\System.Data.DataSetExtensions\\4.5.0\\System.Data.DataSetExtensions.4.5.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6642478Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions.4.5.0","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6642831Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6643450Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"WPF-UI, Version=1.2.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\WPF-UI\\1.2.1\\WPF-UI.1.2.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6646155Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"WPF-UI.1.2.1","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0","net6.0-windows7.0",".NETFramework,Version=v4.6",".NETFramework,Version=v4.7",".NETFramework,Version=v4.8"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6646570Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"WPF-UI, Version=1.2.1","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6647091Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.261602","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers\\0.3.261602\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.3.261602.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6649106Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.3.261602","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:24.6652723Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.261602","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6652991Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:24.6653315Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}) already exists","@l":"Debug","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:24.6653454Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:24.6653683Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:24.6654201Z","@mt":"None of the tfms match packages from {PackageName}","@l":"Debug","PackageName":"System.Configuration.ConfigurationManager","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2022-01-30T04:11:24.6654382Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:24.6693051Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-01-30T04:11:26.2545507Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:26.2604194Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net6.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2022-01-30T04:11:26.2618309Z","@mt":"TFM needs updated to {TargetTFM}","TargetTFM":"net6.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep"}
{"@t":"2022-01-30T04:11:26.2631975Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:26.2632207Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:27.4278843Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep"}
{"@t":"2022-01-30T04:11:27.4341268Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net6.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2022-01-30T04:11:27.4358098Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:27.5597933Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets: (90, 5): The \"ProcessFrameworkReferences\" task failed unexpectedly.\r\nSystem.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)\r\nFile name: 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'\r\n ---> System.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'.\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromPath(IntPtr ptrNativeAssemblyLoadContext, String ilPath, String niPath, ObjectHandleOnStack retAssembly)\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromAssemblyPath(String assemblyPath)\r\n at System.Reflection.Assembly.LoadFrom(String assemblyFile)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.g__TryLoadAssembly|3(AssemblyName assemblyName)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.b__2(AssemblyLoadContext _, AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(TextReader textReader)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(Stream stream)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(String filePath)\r\n at Microsoft.NET.Build.Tasks.RuntimeGraphCache.GetRuntimeGraph(String runtimeJsonPath)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ProcessRuntimeIdentifier(String runtimeIdentifier, KnownRuntimePack selectedRuntimePack, String runtimePackVersion, List`1 additionalFrameworkReferencesForRuntimePack, HashSet`1 unrecognizedRuntimeIdentifiers, List`1 unavailableRuntimePacks, List`1 runtimePacks, List`1 packagesToDownload, String isTrimmable, Boolean addRuntimePackAndDownloadIfNecessary)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ExecuteCore()\r\n at Microsoft.NET.Build.Tasks.TaskBase.Execute()\r\n at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()\r\n at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:27.5660934Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:27.5684857Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2022-01-30T04:11:28.0553334Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:33.5148822Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Restored C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj (in 5.3 sec).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:33.6358610Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets: (90, 5): The \"ProcessFrameworkReferences\" task failed unexpectedly.\r\nSystem.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)\r\nFile name: 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'\r\n ---> System.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'.\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromPath(IntPtr ptrNativeAssemblyLoadContext, String ilPath, String niPath, ObjectHandleOnStack retAssembly)\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromAssemblyPath(String assemblyPath)\r\n at System.Reflection.Assembly.LoadFrom(String assemblyFile)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.g__TryLoadAssembly|3(AssemblyName assemblyName)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.b__2(AssemblyLoadContext _, AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(TextReader textReader)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(Stream stream)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(String filePath)\r\n at Microsoft.NET.Build.Tasks.RuntimeGraphCache.GetRuntimeGraph(String runtimeJsonPath)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ProcessRuntimeIdentifier(String runtimeIdentifier, KnownRuntimePack selectedRuntimePack, String runtimePackVersion, List`1 additionalFrameworkReferencesForRuntimePack, HashSet`1 unrecognizedRuntimeIdentifiers, List`1 unavailableRuntimePacks, List`1 runtimePacks, List`1 packagesToDownload, String isTrimmable, Boolean addRuntimePackAndDownloadIfNecessary)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ExecuteCore()\r\n at Microsoft.NET.Build.Tasks.TaskBase.Execute()\r\n at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()\r\n at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:33.6369246Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:33.6386534Z","@mt":"Updated TFM to {TargetTFM}","TargetTFM":"net6.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep"}
{"@t":"2022-01-30T04:11:33.6399061Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep"}
{"@t":"2022-01-30T04:11:34.7261951Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:34.7273977Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2022-01-30T04:11:35.2022828Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:35.3903642Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" All projects are up-to-date for restore.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:35.4889656Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets: (90, 5): The \"ProcessFrameworkReferences\" task failed unexpectedly.\r\nSystem.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)\r\nFile name: 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'\r\n ---> System.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'.\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromPath(IntPtr ptrNativeAssemblyLoadContext, String ilPath, String niPath, ObjectHandleOnStack retAssembly)\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromAssemblyPath(String assemblyPath)\r\n at System.Reflection.Assembly.LoadFrom(String assemblyFile)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.g__TryLoadAssembly|3(AssemblyName assemblyName)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.b__2(AssemblyLoadContext _, AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(TextReader textReader)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(Stream stream)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(String filePath)\r\n at Microsoft.NET.Build.Tasks.RuntimeGraphCache.GetRuntimeGraph(String runtimeJsonPath)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ProcessRuntimeIdentifier(String runtimeIdentifier, KnownRuntimePack selectedRuntimePack, String runtimePackVersion, List`1 additionalFrameworkReferencesForRuntimePack, HashSet`1 unrecognizedRuntimeIdentifiers, List`1 unavailableRuntimePacks, List`1 runtimePacks, List`1 packagesToDownload, String isTrimmable, Boolean addRuntimePackAndDownloadIfNecessary)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ExecuteCore()\r\n at Microsoft.NET.Build.Tasks.TaskBase.Execute()\r\n at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()\r\n at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:35.4898567Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:35.5693594Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:35.5695092Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:35.6038418Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:35.6040126Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:35.6040798Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers, Version=1.2.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\DesktopBridge.Helpers\\1.2.1\\DesktopBridge.Helpers.1.2.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6043835Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers.1.2.1","TargetFrameworks":[".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6044794Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers, Version=1.2.1","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6045311Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf, Version=1.1.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Hardcodet.NotifyIcon.Wpf\\1.1.0\\Hardcodet.NotifyIcon.Wpf.1.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6047805Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf.1.1.0","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0",".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2",".NETFramework,Version=v4.7.2"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6048308Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf, Version=1.1.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6049056Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient, Version=10.19041.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Interop.UIAutomationClient\\10.19041.0\\Interop.UIAutomationClient.10.19041.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6051337Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient.10.19041.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6051892Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient, Version=10.19041.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6052437Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore, Version=10.19041.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Interop.UIAutomationCore\\10.19041.0\\Interop.UIAutomationCore.10.19041.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6054191Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore.10.19041.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6054540Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore, Version=10.19041.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6055018Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Microsoft.CSharp\\4.7.0\\Microsoft.CSharp.4.7.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6059573Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.CSharp.4.7.0","TargetFrameworks":[".NETCore,Version=v5.0",".NETCoreApp,Version=v2.0",".NETFramework,Version=v4.5",".NETPortable,Version=v0.0,Profile=Profile259",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0","MonoAndroid,Version=v1.0","MonoTouch,Version=v1.0","UAP,Version=v10.0.16299","Windows,Version=v8.0","WindowsPhone,Version=v8.0","WindowsPhoneApp,Version=v8.1","Xamarin.iOS,Version=v1.0","Xamarin.Mac,Version=v2.0","Xamarin.TVOS,Version=v1.0","Xamarin.WatchOS,Version=v1.0",".NETStandard,Version=v1.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6060251Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6060743Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"ModernWpfUI, Version=0.9.4","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\ModernWpfUI\\0.9.4\\ModernWpfUI.0.9.4.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6083289Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"ModernWpfUI.0.9.4","TargetFrameworks":[".NETCoreApp,Version=v3.0","net5.0-windows10.0.18362",".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6083678Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"ModernWpfUI, Version=0.9.4","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6084165Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Newtonsoft.Json, Version=13.0.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Newtonsoft.Json\\13.0.1\\Newtonsoft.Json.13.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6087022Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Newtonsoft.Json.13.0.1","TargetFrameworks":[".NETFramework,Version=v2.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v1.0",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6087947Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Newtonsoft.Json, Version=13.0.1","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6088470Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"PInvoke.User32, Version=0.7.104","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\PInvoke.User32\\0.7.104\\PInvoke.User32.0.7.104.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6091250Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"PInvoke.User32.0.7.104","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0","UAP,Version=v10.0.16299"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6091676Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"PInvoke.User32, Version=0.7.104","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6092180Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.ComponentModel.Composition, Version=6.0.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\System.ComponentModel.Composition\\6.0.0\\System.ComponentModel.Composition.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6094239Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.ComponentModel.Composition.6.0.0","TargetFrameworks":[".NETCoreApp,Version=v3.1","net6.0",".NETFramework,Version=v4.6.1",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6094609Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.ComponentModel.Composition, Version=6.0.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6095085Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\System.Data.DataSetExtensions\\4.5.0\\System.Data.DataSetExtensions.4.5.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6096906Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions.4.5.0","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6097284Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6097788Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"WPF-UI, Version=1.2.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\WPF-UI\\1.2.1\\WPF-UI.1.2.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6100512Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"WPF-UI.1.2.1","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0","net6.0-windows7.0",".NETFramework,Version=v4.6",".NETFramework,Version=v4.7",".NETFramework,Version=v4.8"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6100996Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"WPF-UI, Version=1.2.1","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6101542Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.261602","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers\\0.3.261602\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.3.261602.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6103137Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.3.261602","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:35.6103525Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.261602","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6103625Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:35.6103839Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}) already exists","@l":"Debug","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:35.6103931Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:35.6138424Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.windows.compatibility/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:36.0222014Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.windows.compatibility/index.json 408ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:36.3045634Z","@mt":"Adding {PackageName} {Version}","PackageName":"Microsoft.Windows.Compatibility","Version":"6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.WindowsCompatReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:36.3064049Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:36.3067028Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2022-01-30T04:11:36.3067227Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:36.3083685Z","@mt":"Packages to be added: {Packages}","Packages":"Microsoft.Windows.Compatibility, Version=6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-01-30T04:11:36.3095568Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:36.3095831Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:37.5420860Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-01-30T04:11:37.5437276Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.Windows.Compatibility, Version=6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:37.5448455Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:37.6409465Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets: (90, 5): The \"ProcessFrameworkReferences\" task failed unexpectedly.\r\nSystem.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)\r\nFile name: 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'\r\n ---> System.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'.\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromPath(IntPtr ptrNativeAssemblyLoadContext, String ilPath, String niPath, ObjectHandleOnStack retAssembly)\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromAssemblyPath(String assemblyPath)\r\n at System.Reflection.Assembly.LoadFrom(String assemblyFile)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.g__TryLoadAssembly|3(AssemblyName assemblyName)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.b__2(AssemblyLoadContext _, AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(TextReader textReader)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(Stream stream)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(String filePath)\r\n at Microsoft.NET.Build.Tasks.RuntimeGraphCache.GetRuntimeGraph(String runtimeJsonPath)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ProcessRuntimeIdentifier(String runtimeIdentifier, KnownRuntimePack selectedRuntimePack, String runtimePackVersion, List`1 additionalFrameworkReferencesForRuntimePack, HashSet`1 unrecognizedRuntimeIdentifiers, List`1 unavailableRuntimePacks, List`1 runtimePacks, List`1 packagesToDownload, String isTrimmable, Boolean addRuntimePackAndDownloadIfNecessary)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ExecuteCore()\r\n at Microsoft.NET.Build.Tasks.TaskBase.Execute()\r\n at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()\r\n at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:37.6668974Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:37.6690502Z","@mt":"Re-running analysis to check whether additional changes are needed","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-01-30T04:11:37.6691013Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2022-01-30T04:11:38.1491557Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:38.6650717Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Restored C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj (in 359 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:38.7753712Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets: (90, 5): The \"ProcessFrameworkReferences\" task failed unexpectedly.\r\nSystem.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)\r\nFile name: 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'\r\n ---> System.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'.\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromPath(IntPtr ptrNativeAssemblyLoadContext, String ilPath, String niPath, ObjectHandleOnStack retAssembly)\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromAssemblyPath(String assemblyPath)\r\n at System.Reflection.Assembly.LoadFrom(String assemblyFile)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.g__TryLoadAssembly|3(AssemblyName assemblyName)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.b__2(AssemblyLoadContext _, AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(TextReader textReader)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(Stream stream)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(String filePath)\r\n at Microsoft.NET.Build.Tasks.RuntimeGraphCache.GetRuntimeGraph(String runtimeJsonPath)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ProcessRuntimeIdentifier(String runtimeIdentifier, KnownRuntimePack selectedRuntimePack, String runtimePackVersion, List`1 additionalFrameworkReferencesForRuntimePack, HashSet`1 unrecognizedRuntimeIdentifiers, List`1 unavailableRuntimePacks, List`1 runtimePacks, List`1 packagesToDownload, String isTrimmable, Boolean addRuntimePackAndDownloadIfNecessary)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ExecuteCore()\r\n at Microsoft.NET.Build.Tasks.TaskBase.Execute()\r\n at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()\r\n at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:38.7764044Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:38.8697061Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:38.8698672Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:38.9078978Z","@mt":"Marking package {PackageName} for removal because it appears to be a transitive dependency","PackageName":"System.ComponentModel.Composition","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TransitiveReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9253565Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:38.9255791Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:38.9257921Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers, Version=1.2.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\DesktopBridge.Helpers\\1.2.1\\DesktopBridge.Helpers.1.2.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9263363Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers.1.2.1","TargetFrameworks":[".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9263890Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers, Version=1.2.1","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9264594Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf, Version=1.1.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Hardcodet.NotifyIcon.Wpf\\1.1.0\\Hardcodet.NotifyIcon.Wpf.1.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9266925Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf.1.1.0","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0",".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2",".NETFramework,Version=v4.7.2"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9267292Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf, Version=1.1.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9267803Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient, Version=10.19041.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Interop.UIAutomationClient\\10.19041.0\\Interop.UIAutomationClient.10.19041.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9270058Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient.10.19041.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9270428Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient, Version=10.19041.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9270950Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore, Version=10.19041.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Interop.UIAutomationCore\\10.19041.0\\Interop.UIAutomationCore.10.19041.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9272713Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore.10.19041.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9273063Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore, Version=10.19041.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9273536Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Microsoft.CSharp\\4.7.0\\Microsoft.CSharp.4.7.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9383940Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.CSharp.4.7.0","TargetFrameworks":[".NETCore,Version=v5.0",".NETCoreApp,Version=v2.0",".NETFramework,Version=v4.5",".NETPortable,Version=v0.0,Profile=Profile259",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0","MonoAndroid,Version=v1.0","MonoTouch,Version=v1.0","UAP,Version=v10.0.16299","Windows,Version=v8.0","WindowsPhone,Version=v8.0","WindowsPhoneApp,Version=v8.1","Xamarin.iOS,Version=v1.0","Xamarin.Mac,Version=v2.0","Xamarin.TVOS,Version=v1.0","Xamarin.WatchOS,Version=v1.0",".NETStandard,Version=v1.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9385251Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9386283Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"ModernWpfUI, Version=0.9.4","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\ModernWpfUI\\0.9.4\\ModernWpfUI.0.9.4.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9540863Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"ModernWpfUI.0.9.4","TargetFrameworks":[".NETCoreApp,Version=v3.0","net5.0-windows10.0.18362",".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9541503Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"ModernWpfUI, Version=0.9.4","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9542122Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Newtonsoft.Json, Version=13.0.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Newtonsoft.Json\\13.0.1\\Newtonsoft.Json.13.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9545117Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Newtonsoft.Json.13.0.1","TargetFrameworks":[".NETFramework,Version=v2.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v1.0",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9545633Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Newtonsoft.Json, Version=13.0.1","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9546161Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"PInvoke.User32, Version=0.7.104","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\PInvoke.User32\\0.7.104\\PInvoke.User32.0.7.104.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9548430Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"PInvoke.User32.0.7.104","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0","UAP,Version=v10.0.16299"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9548814Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"PInvoke.User32, Version=0.7.104","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9549417Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\System.Data.DataSetExtensions\\4.5.0\\System.Data.DataSetExtensions.4.5.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9551400Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions.4.5.0","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9551794Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9552311Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"WPF-UI, Version=1.2.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\WPF-UI\\1.2.1\\WPF-UI.1.2.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9554828Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"WPF-UI.1.2.1","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0","net6.0-windows7.0",".NETFramework,Version=v4.6",".NETFramework,Version=v4.7",".NETFramework,Version=v4.8"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9555198Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"WPF-UI, Version=1.2.1","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9555740Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.261602","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers\\0.3.261602\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.3.261602.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9557317Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.3.261602","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9557668Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.261602","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9558178Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility, Version=6.0.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Microsoft.Windows.Compatibility\\6.0.0\\Microsoft.Windows.Compatibility.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9564472Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility.6.0.0","TargetFrameworks":[".NETCoreApp,Version=v3.1","net6.0",".NETStandard,Version=v2.0",".NETStandard,Version=v2.1"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:38.9564914Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility, Version=6.0.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9565044Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:38.9565453Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}) already exists","@l":"Debug","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9565544Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:38.9567089Z","@mt":"{PackageName} already referenced transitively","@l":"Debug","PackageName":"Microsoft.Windows.Compatibility","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.WindowsCompatReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:38.9567211Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:38.9567614Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2022-01-30T04:11:38.9567721Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:38.9597878Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"System.ComponentModel.Composition, Version=6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:38.9612829Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:39.0613587Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets: (90, 5): The \"ProcessFrameworkReferences\" task failed unexpectedly.\r\nSystem.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)\r\nFile name: 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'\r\n ---> System.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'.\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromPath(IntPtr ptrNativeAssemblyLoadContext, String ilPath, String niPath, ObjectHandleOnStack retAssembly)\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromAssemblyPath(String assemblyPath)\r\n at System.Reflection.Assembly.LoadFrom(String assemblyFile)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.g__TryLoadAssembly|3(AssemblyName assemblyName)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.b__2(AssemblyLoadContext _, AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(TextReader textReader)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(Stream stream)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(String filePath)\r\n at Microsoft.NET.Build.Tasks.RuntimeGraphCache.GetRuntimeGraph(String runtimeJsonPath)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ProcessRuntimeIdentifier(String runtimeIdentifier, KnownRuntimePack selectedRuntimePack, String runtimePackVersion, List`1 additionalFrameworkReferencesForRuntimePack, HashSet`1 unrecognizedRuntimeIdentifiers, List`1 unavailableRuntimePacks, List`1 runtimePacks, List`1 packagesToDownload, String isTrimmable, Boolean addRuntimePackAndDownloadIfNecessary)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ExecuteCore()\r\n at Microsoft.NET.Build.Tasks.TaskBase.Execute()\r\n at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()\r\n at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:39.0622953Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:39.0640441Z","@mt":"Re-running analysis to check whether additional changes are needed","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-01-30T04:11:39.0640940Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2022-01-30T04:11:39.5520601Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:40.0341110Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Restored C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj (in 327 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-01-30T04:11:40.1419538Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.101\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets: (90, 5): The \"ProcessFrameworkReferences\" task failed unexpectedly.\r\nSystem.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)\r\nFile name: 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'\r\n ---> System.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'.\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromPath(IntPtr ptrNativeAssemblyLoadContext, String ilPath, String niPath, ObjectHandleOnStack retAssembly)\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromAssemblyPath(String assemblyPath)\r\n at System.Reflection.Assembly.LoadFrom(String assemblyFile)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.g__TryLoadAssembly|3(AssemblyName assemblyName)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.b__2(AssemblyLoadContext _, AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(TextReader textReader)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(Stream stream)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(String filePath)\r\n at Microsoft.NET.Build.Tasks.RuntimeGraphCache.GetRuntimeGraph(String runtimeJsonPath)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ProcessRuntimeIdentifier(String runtimeIdentifier, KnownRuntimePack selectedRuntimePack, String runtimePackVersion, List`1 additionalFrameworkReferencesForRuntimePack, HashSet`1 unrecognizedRuntimeIdentifiers, List`1 unavailableRuntimePacks, List`1 runtimePacks, List`1 packagesToDownload, String isTrimmable, Boolean addRuntimePackAndDownloadIfNecessary)\r\n at Microsoft.NET.Build.Tasks.ProcessFrameworkReferences.ExecuteCore()\r\n at Microsoft.NET.Build.Tasks.TaskBase.Execute()\r\n at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()\r\n at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:40.1428836Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Cannot open project 'C:\\Users\\Torch\\source\\repos\\RoundedTB\\PackagingProject\\RoundedTB.Package.wapproj' because the file extension '.wapproj' is not associated with a language.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-01-30T04:11:40.2241604Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:40.2243061Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:40.2897976Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:40.2899729Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:40.2900964Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers, Version=1.2.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\DesktopBridge.Helpers\\1.2.1\\DesktopBridge.Helpers.1.2.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3024260Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers.1.2.1","TargetFrameworks":[".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3025033Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"DesktopBridge.Helpers, Version=1.2.1","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3025761Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf, Version=1.1.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Hardcodet.NotifyIcon.Wpf\\1.1.0\\Hardcodet.NotifyIcon.Wpf.1.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3029416Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf.1.1.0","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0",".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2",".NETFramework,Version=v4.7.2"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3029858Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Hardcodet.NotifyIcon.Wpf, Version=1.1.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3030433Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient, Version=10.19041.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Interop.UIAutomationClient\\10.19041.0\\Interop.UIAutomationClient.10.19041.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3032624Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient.10.19041.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3033058Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Interop.UIAutomationClient, Version=10.19041.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3033741Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore, Version=10.19041.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Interop.UIAutomationCore\\10.19041.0\\Interop.UIAutomationCore.10.19041.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3035642Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore.10.19041.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3036012Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Interop.UIAutomationCore, Version=10.19041.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3036589Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Microsoft.CSharp\\4.7.0\\Microsoft.CSharp.4.7.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3041118Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.CSharp.4.7.0","TargetFrameworks":[".NETCore,Version=v5.0",".NETCoreApp,Version=v2.0",".NETFramework,Version=v4.5",".NETPortable,Version=v0.0,Profile=Profile259",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0","MonoAndroid,Version=v1.0","MonoTouch,Version=v1.0","UAP,Version=v10.0.16299","Windows,Version=v8.0","WindowsPhone,Version=v8.0","WindowsPhoneApp,Version=v8.1","Xamarin.iOS,Version=v1.0","Xamarin.Mac,Version=v2.0","Xamarin.TVOS,Version=v1.0","Xamarin.WatchOS,Version=v1.0",".NETStandard,Version=v1.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3041527Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3042298Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"ModernWpfUI, Version=0.9.4","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\ModernWpfUI\\0.9.4\\ModernWpfUI.0.9.4.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3062273Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"ModernWpfUI.0.9.4","TargetFrameworks":[".NETCoreApp,Version=v3.0","net5.0-windows10.0.18362",".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3062655Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"ModernWpfUI, Version=0.9.4","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3063178Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Newtonsoft.Json, Version=13.0.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Newtonsoft.Json\\13.0.1\\Newtonsoft.Json.13.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3066071Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Newtonsoft.Json.13.0.1","TargetFrameworks":[".NETFramework,Version=v2.0",".NETFramework,Version=v3.5",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETStandard,Version=v1.0",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3066524Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Newtonsoft.Json, Version=13.0.1","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3067018Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"PInvoke.User32, Version=0.7.104","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\PInvoke.User32\\0.7.104\\PInvoke.User32.0.7.104.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3069856Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"PInvoke.User32.0.7.104","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0","UAP,Version=v10.0.16299"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3070236Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"PInvoke.User32, Version=0.7.104","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3070732Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\System.Data.DataSetExtensions\\4.5.0\\System.Data.DataSetExtensions.4.5.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3072682Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions.4.5.0","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3073060Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3073556Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"WPF-UI, Version=1.2.1","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\WPF-UI\\1.2.1\\WPF-UI.1.2.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3075879Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"WPF-UI.1.2.1","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0","net6.0-windows7.0",".NETFramework,Version=v4.6",".NETFramework,Version=v4.7",".NETFramework,Version=v4.8"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3076235Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"WPF-UI, Version=1.2.1","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3076760Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.261602","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers\\0.3.261602\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.3.261602.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3080099Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.3.261602","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3080895Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.261602","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3081779Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility, Version=6.0.0","PackagePath":"C:\\Users\\Torch\\.nuget\\packages\\Microsoft.Windows.Compatibility\\6.0.0\\Microsoft.Windows.Compatibility.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3088431Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility.6.0.0","TargetFrameworks":[".NETCoreApp,Version=v3.1","net6.0",".NETStandard,Version=v2.0",".NETStandard,Version=v2.1"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-01-30T04:11:40.3088866Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility, Version=6.0.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3088997Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:40.3089291Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}) already exists","@l":"Debug","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3089368Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:40.3090885Z","@mt":"{PackageName} already referenced transitively","@l":"Debug","PackageName":"Microsoft.Windows.Compatibility","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.WindowsCompatReferenceAnalyzer"}
{"@t":"2022-01-30T04:11:40.3090998Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:40.3091333Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2022-01-30T04:11:40.3091427Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2022-01-30T04:11:40.3116810Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-01-30T04:11:56.4892217Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:56.4995826Z","@mt":"{FilesNeededCount} expected template items needed","FilesNeededCount":0,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
{"@t":"2022-01-30T04:11:56.5007411Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:56.5160306Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update Winforms Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:56.5282957Z","@mt":"Default font in Windows Forms has been changed from Microsoft Sans Serif to Seg Segoe UI, in order to change the default font use the API - Application.SetDefaultFont(Font font). For more details see here - https://devblogs.microsoft.com/dotnet/whats-new-in-windows-forms-in-net-6-0-preview-5/#application-wide-default-font.","@l":"Warning","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsDefaultFontUpdater"}
{"@t":"2022-01-30T04:11:56.5364539Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update Winforms Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:56.5395965Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsDefaultFontUpdater","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:58.1143170Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Default Font API Alert","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep"}
{"@t":"2022-01-30T04:11:58.1200339Z","@mt":"Default font in Windows Forms has been changed from Microsoft Sans Serif to Seg Segoe UI, in order to change the default font use the API - Application.SetDefaultFont(Font font). For more details see here - https://devblogs.microsoft.com/dotnet/whats-new-in-windows-forms-in-net-6-0-preview-5/#application-wide-default-font.","@l":"Warning","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsDefaultFontUpdater"}
{"@t":"2022-01-30T04:11:58.1209960Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Default Font API Alert","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep"}
{"@t":"2022-01-30T04:11:58.1222380Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update Winforms Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep"}
{"@t":"2022-01-30T04:11:58.1239690Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update Winforms Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep"}
{"@t":"2022-01-30T04:11:59.3266781Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade app config files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:59.3312369Z","@mt":"Loading config files: {ConfigFiles}","@l":"Debug","ConfigFiles":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\app.config","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep"}
{"@t":"2022-01-30T04:11:59.3318663Z","@mt":"Loaded {ConfigCount} config files","@l":"Debug","ConfigCount":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep"}
{"@t":"2022-01-30T04:11:59.3478796Z","@mt":"Found {AppSettingCount} app settings for upgrade: {AppSettingNames}","AppSettingCount":0,"AppSettingNames":"","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.Updaters.AppSettingsConfigUpdater"}
{"@t":"2022-01-30T04:11:59.3517487Z","@mt":"Found {ConnectionStringsCount} connection strings for upgrade: {ConnectionStringNames}","ConnectionStringsCount":0,"ConnectionStringNames":"","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.Updaters.ConnectionStringsConfigUpdater"}
{"@t":"2022-01-30T04:11:59.3547419Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade app config files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:59.3785799Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:11:59.3819587Z","@mt":"Opening project {ProjectPath}","@l":"Debug","ProjectPath":"C:\\Users\\Torch\\source\\repos\\RoundedTB\\RoundedTB\\RoundedTB.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-01-30T04:11:59.3879239Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"RoundedTB","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2022-01-30T04:12:00.7073514Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"RoundedTB","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2022-01-30T04:12:00.7110992Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0001","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-01-30T04:12:00.7111631Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0002","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-01-30T04:12:00.7111744Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0005","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-01-30T04:12:00.7111822Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0006","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-01-30T04:12:00.7111899Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0007","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-01-30T04:12:00.7111979Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0008","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-01-30T04:12:00.7112053Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0010","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-01-30T04:12:00.7112126Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0012","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-01-30T04:12:00.7112890Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:12:00.7356574Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:12:00.7374088Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:12:00.7374395Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:12:09.4064666Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"}
{"@t":"2022-01-30T04:12:09.4081141Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"}
{"@t":"2022-01-30T04:12:11.4391469Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net6.0-windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2022-01-30T04:12:11.4440187Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net6.0-windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2022-01-30T04:12:11.4477633Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net6.0-windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2022-01-30T04:12:11.4489359Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:12:11.4504310Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:12:11.4504616Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:12:11.4550399Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net6.0-windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2022-01-30T04:12:13.1552121Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep"}
{"@t":"2022-01-30T04:12:13.1570494Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep"}
{"@t":"2022-01-30T04:12:14.4679508Z","@mt":"No applicable upgrade steps found","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-01-30T04:12:14.4682528Z","@mt":"Upgrade has completed. Please review any changes.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleUpgrade"}
{"@t":"2022-01-30T04:12:14.4729508Z","@mt":"No state to save","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.FileUpgradeStateFactory"}
{"@t":"2022-01-30T04:12:14.4793588Z","@mt":"Hosting started","@l":"Debug","EventId":{"Id":2,"Name":"Started"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2022-01-30T04:12:14.4828530Z","@mt":"Hosting stopping","@l":"Debug","EventId":{"Id":3,"Name":"Stopping"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2022-01-30T04:12:14.4831321Z","@mt":"Hosting stopped","@l":"Debug","EventId":{"Id":4,"Name":"Stopped"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2022-01-30T04:12:14.4864103Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_NuGet2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:12:14.4865966Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_Default2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:12:14.4866184Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_VB2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:12:14.4866274Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_Web2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-01-30T04:12:14.4866358Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_windows2f973df6a35c4fa99c3838596f4ee382","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}