├── .github └── FUNDING.yml ├── .gitignore ├── CSGO Font Manager.sln ├── CSGO Font Manager.sln.DotSettings.user ├── CSGO Font Manager ├── App.config ├── CSGO Font Manager.csproj ├── CSGO Font Manager.csproj.user ├── DragAndDrop.cs ├── FileTemplates.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── JsonManager.cs ├── LocateAssemblyLibrary.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── FontReg.exe │ ├── Thumbnail.jpg │ ├── Thumbnail.png │ ├── add_retro.png │ ├── fonmanager_icon-5.png │ ├── fontmanager.png │ ├── fontmanager_watermark.png │ └── remove_retro.png ├── Settings.cs ├── fonmanager_icon.ico ├── obj │ └── Debug │ │ ├── CSGO Font Manager.csproj.GenerateResource.cache │ │ └── DesignTimeResolveAssemblyReferences.cache ├── packages.config └── stableVersion.txt ├── LICENSE ├── README.md ├── faq.md ├── packages ├── Fastenshtein.1.0.0.5 │ ├── .signature.p7s │ ├── Fastenshtein.1.0.0.5.nupkg │ └── lib │ │ ├── net40-client │ │ ├── Fastenshtein.dll │ │ └── Fastenshtein.xml │ │ ├── netstandard1.0 │ │ └── Fastenshtein.dll │ │ └── portable-net40+sl5+win8+wpa+wp8 │ │ ├── Fastenshtein.dll │ │ └── Fastenshtein.xml ├── Newtonsoft.Json.12.0.3 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.12.0.3.nupkg │ ├── 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 │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard2.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── packageIcon.png └── System.Runtime.4.1.0 │ ├── System.Runtime.4.1.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net462 │ │ └── System.Runtime.dll │ ├── portable-net45+win8+wp80+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ │ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── net462 │ └── System.Runtime.dll │ ├── netcore50 │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── netstandard1.0 │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── netstandard1.2 │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── netstandard1.3 │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── netstandard1.5 │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── portable-net45+win8+wp80+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ └── todo.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/.gitignore -------------------------------------------------------------------------------- /CSGO Font Manager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager.sln -------------------------------------------------------------------------------- /CSGO Font Manager.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager.sln.DotSettings.user -------------------------------------------------------------------------------- /CSGO Font Manager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/App.config -------------------------------------------------------------------------------- /CSGO Font Manager/CSGO Font Manager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/CSGO Font Manager.csproj -------------------------------------------------------------------------------- /CSGO Font Manager/CSGO Font Manager.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/CSGO Font Manager.csproj.user -------------------------------------------------------------------------------- /CSGO Font Manager/DragAndDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/DragAndDrop.cs -------------------------------------------------------------------------------- /CSGO Font Manager/FileTemplates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/FileTemplates.cs -------------------------------------------------------------------------------- /CSGO Font Manager/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Form1.Designer.cs -------------------------------------------------------------------------------- /CSGO Font Manager/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Form1.cs -------------------------------------------------------------------------------- /CSGO Font Manager/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Form1.resx -------------------------------------------------------------------------------- /CSGO Font Manager/JsonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/JsonManager.cs -------------------------------------------------------------------------------- /CSGO Font Manager/LocateAssemblyLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/LocateAssemblyLibrary.cs -------------------------------------------------------------------------------- /CSGO Font Manager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Program.cs -------------------------------------------------------------------------------- /CSGO Font Manager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSGO Font Manager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CSGO Font Manager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Properties/Resources.resx -------------------------------------------------------------------------------- /CSGO Font Manager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CSGO Font Manager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Properties/Settings.settings -------------------------------------------------------------------------------- /CSGO Font Manager/Resources/FontReg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Resources/FontReg.exe -------------------------------------------------------------------------------- /CSGO Font Manager/Resources/Thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Resources/Thumbnail.jpg -------------------------------------------------------------------------------- /CSGO Font Manager/Resources/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Resources/Thumbnail.png -------------------------------------------------------------------------------- /CSGO Font Manager/Resources/add_retro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Resources/add_retro.png -------------------------------------------------------------------------------- /CSGO Font Manager/Resources/fonmanager_icon-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Resources/fonmanager_icon-5.png -------------------------------------------------------------------------------- /CSGO Font Manager/Resources/fontmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Resources/fontmanager.png -------------------------------------------------------------------------------- /CSGO Font Manager/Resources/fontmanager_watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Resources/fontmanager_watermark.png -------------------------------------------------------------------------------- /CSGO Font Manager/Resources/remove_retro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Resources/remove_retro.png -------------------------------------------------------------------------------- /CSGO Font Manager/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/Settings.cs -------------------------------------------------------------------------------- /CSGO Font Manager/fonmanager_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/fonmanager_icon.ico -------------------------------------------------------------------------------- /CSGO Font Manager/obj/Debug/CSGO Font Manager.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/obj/Debug/CSGO Font Manager.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /CSGO Font Manager/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /CSGO Font Manager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/CSGO Font Manager/packages.config -------------------------------------------------------------------------------- /CSGO Font Manager/stableVersion.txt: -------------------------------------------------------------------------------- 1 | 3.6 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/README.md -------------------------------------------------------------------------------- /faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/faq.md -------------------------------------------------------------------------------- /packages/Fastenshtein.1.0.0.5/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Fastenshtein.1.0.0.5/.signature.p7s -------------------------------------------------------------------------------- /packages/Fastenshtein.1.0.0.5/Fastenshtein.1.0.0.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Fastenshtein.1.0.0.5/Fastenshtein.1.0.0.5.nupkg -------------------------------------------------------------------------------- /packages/Fastenshtein.1.0.0.5/lib/net40-client/Fastenshtein.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Fastenshtein.1.0.0.5/lib/net40-client/Fastenshtein.dll -------------------------------------------------------------------------------- /packages/Fastenshtein.1.0.0.5/lib/net40-client/Fastenshtein.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Fastenshtein.1.0.0.5/lib/net40-client/Fastenshtein.xml -------------------------------------------------------------------------------- /packages/Fastenshtein.1.0.0.5/lib/netstandard1.0/Fastenshtein.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Fastenshtein.1.0.0.5/lib/netstandard1.0/Fastenshtein.dll -------------------------------------------------------------------------------- /packages/Fastenshtein.1.0.0.5/lib/portable-net40+sl5+win8+wpa+wp8/Fastenshtein.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Fastenshtein.1.0.0.5/lib/portable-net40+sl5+win8+wpa+wp8/Fastenshtein.dll -------------------------------------------------------------------------------- /packages/Fastenshtein.1.0.0.5/lib/portable-net40+sl5+win8+wpa+wp8/Fastenshtein.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Fastenshtein.1.0.0.5/lib/portable-net40+sl5+win8+wpa+wp8/Fastenshtein.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/Newtonsoft.Json.12.0.3/packageIcon.png -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/System.Runtime.4.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/System.Runtime.4.1.0.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/net462/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/lib/net462/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/portable-net45+win8+wp80+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/net462/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/net462/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/portable-net45+win8+wp80+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poggicek/Font-Manager-CS2/HEAD/todo.md --------------------------------------------------------------------------------