20210929T115245.623Z I ---------- Application logging started. 20210929T115245.623Z I MicroProfiler standalone frontend started... 20210929T115245.627Z I Frontend manager: constructed. this: 0x00C21038 20210929T115245.631Z I IPC manager: attempting server creation... endpoint_id: sockets|127.0.0.1:6100 20210929T115245.633Z I IPC manager: succeeded. 20210929T115245.634Z I IPC socket server: processing thread started.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.Text.Json; | |
using System.Text.Json.Serialization; | |
namespace TestCaseInsensitiveJsonStringEnum | |
{ | |
[JsonConverter(typeof(JsonStringEnumConverter))] | |
public enum Season | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Temp\github-clean\machinelearning>build.cmd | |
GET https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.ps1 | |
Attempting to install dotnet from public location. | |
dotnet-install: Note that the intended use of this script is for Continuous Integration (CI) scenarios, where: | |
dotnet-install: - The SDK needs to be installed without user interaction and without admin rights. | |
dotnet-install: - The SDK installation doesn't need to persist across multiple CI runs. | |
dotnet-install: To set up a development environment or to run apps, use installers rather than this script. Visit https://dotnet.microsoft.com/download to get the installer. | |
dotnet-install: Extracting the archive. | |
dotnet-install: Adding to current process PATH: "C:\Temp\github-clean\machinelearning\.dotnet\". Note: This change will not be visible if PowerShell was run as a child process. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Temp>mkdir github-clean | |
C:\Temp>cd github-clean | |
C:\Temp\github-clean>git clone https://github.com/dotnet/machinelearning.git | |
Cloning into 'machinelearning'... | |
remote: Enumerating objects: 61066, done. | |
remote: Counting objects: 100% (2763/2763), done. | |
remote: Compressing objects: 100% (1913/1913), done. | |
remote: Total 61066 (delta 1103), reused 1602 (delta 780), pack-reused 58303 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static void DumpRequest(string description, System.Net.HttpWebRequest request) | |
{ | |
var sb = new System.Text.StringBuilder(); | |
sb.AppendLine("===").AppendFormat("REQUEST DUMP FOR {0}", description); | |
sb.AppendLine().AppendFormat("GetType()={0}", request.GetType()); | |
sb.AppendLine().AppendFormat("Accept={0}", request.Accept); | |
sb.AppendLine().AppendFormat("Address={0}", request.Address); | |
sb.AppendLine().AppendFormat("AllowAutoRedirect={0}", request.AllowAutoRedirect); | |
sb.AppendLine().AppendFormat("AllowReadStreamBuffering={0}", request.AllowReadStreamBuffering); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\TEMP\build-gdal>ver | |
Microsoft Windows [Version 6.1.7601] | |
C:\TEMP\build-gdal>dir | |
Volume in drive C has no label. | |
Volume Serial Number is 5243-A922 | |
Directory of C:\TEMP\build-gdal |