I hereby claim:
- I am bruno-garcia on github.
- I am brunogarcia (https://keybase.io/brunogarcia) on keybase.
- I have a public key ASCwN-0tPUXeUT287EntKXJ-lI2FFSi3bJ9EZS-LDMce_Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| using System.ComponentModel; | |
| using System.Diagnostics; | |
| using System.Reflection; | |
| [EditorBrowsable(EditorBrowsableState.Never)] | |
| internal static class AssemblyExtensions | |
| { | |
| /// <summary> | |
| /// Whether the assembly was compiled with the optimize+ flag | |
| /// </summary> |
| @echo off | |
| for /f %%a in ('dir /b *.sln 2^> nul') do set sln=%%a | |
| if defined sln set sln=%cd%\%sln% | |
| start "" /b "C:\Program Files (x86)\Microsoft Visual Studio\Preview\Community\Common7\IDE\devenv.exe" %sln% |
| using System; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Microsoft.AspNetCore.Diagnostics; | |
| using Microsoft.AspNetCore.Http; | |
| using Microsoft.Extensions.Logging; | |
| internal class ExceptionInResponseMiddleware | |
| { | |
| private readonly RequestDelegate _next; |
| <linker> | |
| <assembly fullname="System"> | |
| <type fullname="System.ComponentModel.TypeConverter" preserve="all"/> | |
| <type fullname="System.ComponentModel.ArrayConverter" preserve="all"/> | |
| <type fullname="System.ComponentModel.BaseNumberConverter" preserve="all"/> | |
| <type fullname="System.ComponentModel.BooleanConverter" preserve="all"/> | |
| <type fullname="System.ComponentModel.ByteConverter" preserve="all"/> | |
| <type fullname="System.ComponentModel.CharConverter" preserve="all"/> | |
| <type fullname="System.ComponentModel.CollectionConverter" preserve="all"/> | |
| <type fullname="System.ComponentModel.ComponentConverter" preserve="all"/> |
| // Modifying root scope | |
| Sentry.setTag("a","a"); | |
| // Creates a new scope and pushes in the stap, a clone of the previous one. | |
| Sentry.pushScope(); | |
| // Here we have a tag a with value a | |
| Sentry.setTag("a","b"); | |
| // Now a has value b | |
| // Throw away the current scope (goes back to the previous item in the stack) | |
| Sentry.popScope(); | |
| // Now tag a has value a |
| https://[email protected]/1512778 |
| using System; | |
| using System.Globalization; | |
| using System.IO; | |
| using Sentry.Extensibility; | |
| using Sentry.Protocol; | |
| public class FileAppenderDiagnosticLogger : IDiagnosticLogger | |
| { | |
| private readonly SentryLevel _minimalLevel; | |
| private readonly StreamWriter _writer; |
| <WaitFor FilePath="$(MSBuildProjectDirectory)/../../samples/unity-of-bugs/Library/ScriptAssemblies/UnityEngine.TestRunner.dll" Delay="5000" /> | |
| <UsingTask | |
| TaskName="WaitFor" | |
| TaskFactory="RoslynCodeTaskFactory" | |
| AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll" > | |
| <ParameterGroup> | |
| <FilePath ParameterType="System.String" Required="true" /> | |
| <Delay ParameterType="System.Int32" Required="true" /> |
| https://github.com/Aminator/UwpWithoutVisualStudio | |
| <PropertyGroup> | |
| <TargetFrameworks>net5.0;netcoreapp3.0;netstandard2.1;netstandard2.0;net461</TargetFrameworks> | |
| <TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net5.0-windows10.0.18362.0</TargetFrameworks> | |
| </PropertyGroup> | |
| <PropertyGroup Condition="'$(TargetFramework)' == 'net5.0-windows10.0.18362.0'"> | |
| <!-- <TargetPlatformVersion>10.0.19041.0</TargetPlatformVersion>--> | |
| <!-- <TargetPlatformMinVersion>10.0.18362.0</TargetPlatformMinVersion>--> |