Skip to content

Instantly share code, notes, and snippets.

@ericbrunner
ericbrunner / log
Created August 16, 2023 11:38
build
Build started...
1>------ Build started: Project: MauiApp1, Configuration: Debug Any CPU ------
1>Executing SayHello Task to establish a connection to a Remote Server.
1> Properties:
1> SessionId=c7d11821f579f7be20cca70bea58f9077387ac6e7fda6c0f0bf0598883d8d781,
1> Addresss=192.168.0.185,
1> SshPort=22,
1> TcpPort=51087,
1> User=erichbrunner,
1> AppName=MauiApp1,
This file has been truncated, but you can view the full file.
Build started...
1>------ Build started: Project: Msoft.App.Views, Configuration: Debug Any CPU ------
1>Msoft.App.Views -> C:\dev-msoft\git\Time4App.Maui\Framework\Msoft.App.Views\bin\Debug\net7.0-ios\Msoft.App.Views.dll
1>Msoft.App.Views -> C:\dev-msoft\git\Time4App.Maui\Framework\Msoft.App.Views\bin\Debug\net7.0-android\Msoft.App.Views.dll
2>------ Build started: Project: msoftAppBase, Configuration: Debug Any CPU ------
2>msoftAppBase -> C:\dev-msoft\git\Time4App.Maui\Framework\msoftAppBase\bin\Debug\net7.0-ios\msoftAppBase.dll
2>msoftAppBase -> C:\dev-msoft\git\Time4App.Maui\Framework\msoftAppBase\bin\Debug\net7.0-android\msoftAppBase.dll
3>------ Build started: Project: time4Res, Configuration: Debug Any CPU ------
3>time4Res -> C:\dev-msoft\git\Time4App.Maui\Framework\time4Res\bin\Debug\net7.0-ios\time4Res.dll
3>time4Res -> C:\dev-msoft\git\Time4App.Maui\Framework\time4Res\bin\Debug\net7.0-android\time4Res.dll
@ericbrunner
ericbrunner / txt
Last active April 5, 2023 05:40
GithubCopilotVS2022Log
GitHub Copilot 1.78.0.0 (v1.78.0.0@399602824)
[DEBUG] [agent] [2023-04-05T05:27:11.982Z] Agent service starting
[DEBUG] [agent] [2023-04-05T05:27:12.992Z] Telemetry initialized
GitHub Copilot Agent v1.78.0
[INFO] [ghostText] [2023-04-05T05:27:55.499Z] Cancelled during debounce
[DEBUG] [getCompletions] [2023-04-05T05:28:08.862Z] Producing empty completions due to document version mismatch. Completions requested for document version 46 but document version was 45.
[INFO] [RequestProposalsAsync] 0 completions available.
[INFO] [default] [2023-04-05T05:29:02.960Z] [fetchCompletions] engine https://copilot-proxy.githubusercontent.com/v1/engines/copilot-codex
[INFO] [default] [2023-04-05T05:29:04.271Z] request.response: [https://copilot-proxy.githubusercontent.com/v1/engines/copilot-codex/completions] took 1310 ms
[INFO] [streamChoices] [2023-04-05T05:29:04.280Z] solution 0 returned. finish reason: [stop]
@ericbrunner
ericbrunner / ProductImportEventSubscriber.cs
Created May 21, 2021 12:52
ProductImportEventSubscriber
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Newtonsoft.Json;
using Polly;
using SmartStore.Core.Data;
using SmartStore.Core.Domain.Catalog;
@ericbrunner
ericbrunner / locally_build_netstandard21_xf.txt
Created October 31, 2019 08:36
Local Build .netstandard2.1 Xamarin.Forms Android App
c:\Users\eb.FVW\source\repos\TestNetStandardApp>nuget restore TestNetStandardApp.Android.sln
MSBuild auto-detection: using msbuild version '16.3.2.50909' from 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin'.
Restoring packages for c:\Users\eb.FVW\source\repos\TestNetStandardApp\TestNetStandardApp\TestNetStandardApp.csproj...
Committing restore...
Assets file has not changed. Skipping assets file writing. Path: c:\Users\eb.FVW\source\repos\TestNetStandardApp\TestNetStandardApp.Android\obj\project.assets.json
Restore completed in 67,9 ms for c:\Users\eb.FVW\source\repos\TestNetStandardApp\TestNetStandardApp.Android\TestNetStandardApp.Android.csproj.
Committing restore...
Generating MSBuild file c:\Users\eb.FVW\source\repos\TestNetStandardApp\TestNetStandardApp\obj\TestNetStandardApp.csproj.nuget.g.props.
Generating MSBuild file c:\Users\eb.FVW\source\repos\TestNetStandardApp\TestNetStandardApp\obj\TestNetStandardApp.csproj.nuget.g.targets.
@ericbrunner
ericbrunner / host.json
Created August 18, 2018 06:09
Azure Function - Turn on Full Debug Logging to Application Insights for your Function
{
"functionTimeout": "00:10:00",
"logger": {
"categoryFilter": {
"defaultLevel": "Information",
"categoryLevels": {
"Function": "Trace"
}
}
}
@ericbrunner
ericbrunner / signalr.rolsped.utils.js
Created August 14, 2018 10:21
SignalR - Javascript Code
var signalrutils = {
bindConnectionMessage: function() {
//debugger;;
var messageCallback = function(senderName, message) {
//debugger;;
if (!message) return;
@ericbrunner
ericbrunner / RoltruckCommHub.cs
Created August 14, 2018 06:05
RoltruckCommHub
using Microsoft.AspNetCore.SignalR;
namespace TruckerWebApp.RestApi.Hub
{
public class RoltruckCommHub : Microsoft.AspNetCore.SignalR.Hub
{
public void BroadcastMessage(string name, string message)
{
Clients.All.SendAsync("broadcastMessage", name, message);
}
@ericbrunner
ericbrunner / TruckerWebAppHub.cs
Created August 14, 2018 06:02
TruckerWebAppHub
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.AspNetCore.SignalR;
using Newtonsoft.Json;
using TruckerWebApp.RestApi.Manager;
namespace TruckerWebApp.RestApi.Hub
{
public class TruckerWebAppHub : Microsoft.AspNetCore.SignalR.Hub
@ericbrunner
ericbrunner / StartUp.cs
Created August 14, 2018 06:01
SIgnalR Hub - Startup code
using System;
using System.Collections.Generic;
using System.Linq;
using JsonDiffPatchDotNet;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;