├── .vs └── BrowserPivot │ └── v16 │ └── .suo ├── BrowserPivot.sln ├── BrowserPivot ├── BrowserPivot.csproj ├── BrowserPivot.csproj.user ├── Costura64 │ └── CommandLine.dll ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── ImpersonationUser.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── file_managent.cs ├── packages.config └── win32api.cs ├── README.md ├── packages ├── CommandLineParser.2.9.1 │ ├── .signature.p7s │ ├── CommandLine20.png │ ├── CommandLineParser.2.9.1.nupkg │ ├── License.md │ ├── README.md │ └── lib │ │ ├── net40 │ │ ├── CommandLine.dll │ │ └── CommandLine.xml │ │ ├── net45 │ │ ├── CommandLine.dll │ │ └── CommandLine.xml │ │ ├── net461 │ │ ├── CommandLine.dll │ │ └── CommandLine.xml │ │ └── netstandard2.0 │ │ ├── CommandLine.dll │ │ └── CommandLine.xml ├── Costura.Fody.1.6.2 │ ├── .signature.p7s │ ├── Costura.Fody.1.6.2.nupkg │ ├── Costura.Fody.dll │ ├── Costura.Fody.pdb │ ├── Costura.Tasks.dll │ ├── Costura.Tasks.pdb │ ├── build │ │ ├── dotnet │ │ │ └── Costura.Fody.targets │ │ └── portable-net+sl+win+wpa+wp │ │ │ └── Costura.Fody.targets │ ├── lib │ │ ├── dotnet │ │ │ ├── Costura.dll │ │ │ └── Costura.pdb │ │ └── portable-net+sl+win+wpa+wp │ │ │ ├── Costura.dll │ │ │ └── Costura.pdb │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 ├── Fody.2.0.0 │ ├── .signature.p7s │ ├── Content │ │ └── FodyWeavers.xml │ ├── Fody.2.0.0.nupkg │ ├── Fody.dll │ ├── Fody.pdb │ ├── FodyCommon.dll │ ├── FodyCommon.pdb │ ├── FodyIsolated.dll │ ├── FodyIsolated.pdb │ ├── Mono.Cecil.Mdb.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Rocks.dll │ ├── Mono.Cecil.dll │ ├── Tools │ │ └── install.ps1 │ └── build │ │ ├── dotnet │ │ └── Fody.targets │ │ ├── netstandard1.4 │ │ └── Fody.targets │ │ └── portable-net+sl+win+wpa+wp │ │ └── Fody.targets └── Newtonsoft.Json.13.0.3 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.13.0.3.nupkg │ ├── README.md │ ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net6.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── packageIcon.png └── starfile.jpeg /.vs/BrowserPivot/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/.vs/BrowserPivot/v16/.suo -------------------------------------------------------------------------------- /BrowserPivot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/BrowserPivot.sln -------------------------------------------------------------------------------- /BrowserPivot/BrowserPivot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/BrowserPivot/BrowserPivot.csproj -------------------------------------------------------------------------------- /BrowserPivot/BrowserPivot.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/BrowserPivot/BrowserPivot.csproj.user -------------------------------------------------------------------------------- /BrowserPivot/Costura64/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/BrowserPivot/Costura64/CommandLine.dll -------------------------------------------------------------------------------- /BrowserPivot/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/BrowserPivot/FodyWeavers.xml -------------------------------------------------------------------------------- /BrowserPivot/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/BrowserPivot/FodyWeavers.xsd -------------------------------------------------------------------------------- /BrowserPivot/ImpersonationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/BrowserPivot/ImpersonationUser.cs -------------------------------------------------------------------------------- /BrowserPivot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/BrowserPivot/Program.cs -------------------------------------------------------------------------------- /BrowserPivot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/BrowserPivot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BrowserPivot/file_managent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/BrowserPivot/file_managent.cs -------------------------------------------------------------------------------- /BrowserPivot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/BrowserPivot/packages.config -------------------------------------------------------------------------------- /BrowserPivot/win32api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/BrowserPivot/win32api.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/README.md -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/.signature.p7s -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/CommandLine20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/CommandLine20.png -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/CommandLineParser.2.9.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/CommandLineParser.2.9.1.nupkg -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/License.md -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/README.md -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/lib/net40/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/lib/net40/CommandLine.dll -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/lib/net40/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/lib/net40/CommandLine.xml -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/lib/net45/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/lib/net45/CommandLine.dll -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/lib/net45/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/lib/net45/CommandLine.xml -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/lib/net461/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/lib/net461/CommandLine.dll -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/lib/net461/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/lib/net461/CommandLine.xml -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/lib/netstandard2.0/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/lib/netstandard2.0/CommandLine.dll -------------------------------------------------------------------------------- /packages/CommandLineParser.2.9.1/lib/netstandard2.0/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/CommandLineParser.2.9.1/lib/netstandard2.0/CommandLine.xml -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/.signature.p7s -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Fody.1.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/Costura.Fody.1.6.2.nupkg -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/Costura.Fody.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Fody.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/Costura.Fody.pdb -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/Costura.Tasks.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Tasks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/Costura.Tasks.pdb -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/build/dotnet/Costura.Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/build/dotnet/Costura.Fody.targets -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/build/portable-net+sl+win+wpa+wp/Costura.Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/build/portable-net+sl+win+wpa+wp/Costura.Fody.targets -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/dotnet/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/lib/dotnet/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/dotnet/Costura.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/lib/dotnet/Costura.pdb -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.pdb -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/tools/install.ps1 -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Costura.Fody.1.6.2/tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/Fody.2.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Content/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/Content/FodyWeavers.xml -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Fody.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/Fody.2.0.0.nupkg -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Fody.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/Fody.pdb -------------------------------------------------------------------------------- /packages/Fody.2.0.0/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/FodyCommon.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/FodyCommon.pdb -------------------------------------------------------------------------------- /packages/Fody.2.0.0/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/FodyIsolated.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/FodyIsolated.pdb -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/Fody.2.0.0/build/dotnet/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/build/dotnet/Fody.targets -------------------------------------------------------------------------------- /packages/Fody.2.0.0/build/netstandard1.4/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/build/netstandard1.4/Fody.targets -------------------------------------------------------------------------------- /packages/Fody.2.0.0/build/portable-net+sl+win+wpa+wp/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Fody.2.0.0/build/portable-net+sl+win+wpa+wp/Fody.targets -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/Newtonsoft.Json.13.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/Newtonsoft.Json.13.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/README.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net6.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net6.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/packages/Newtonsoft.Json.13.0.3/packageIcon.png -------------------------------------------------------------------------------- /starfile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarfireLab/BrowserPivot/HEAD/starfile.jpeg --------------------------------------------------------------------------------