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
CoreCLR path = 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.0.3\coreclr.dll', CoreCLR dir = 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.0.3' | |
Loaded library from C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.0.3\coreclr.dll | |
Property TRUSTED_PLATFORM_ASSEMBLIES = C:\TFSAPP\VSTS\CoreTest2017-3\CoreTest2017-3\bin\Debug\netcoreapp1.0\CoreTest2017-3.dll;C:\Users\{userName}\.nuget\packages\microsoft.applicationinsights.aspnetcore\2.0.0\lib\netstandard1.6\Microsoft.ApplicationInsights.AspNetCore.dll;C:\Users\{userName}\.nuget\packages\microsoft.applicationinsights\2.2.0\lib\netstandard1.5\Microsoft.ApplicationInsights.dll;C:\Users\{userName}\.nuget\packages\microsoft.aspnetcore.diagnostics.abstractions\1.1.0\lib\netstandard1.0\Microsoft.AspNetCore.Diagnostics.Abstractions.dll;C:\Users\{userName}\.nuget\packages\microsoft.aspnetcore.diagnostics\1.1.0\lib\netstandard1.3\Microsoft.AspNetCore.Diagnostics.dll;C:\Users\{userName}\.nuget\packages\microsoft.aspnetcore.hosting.abstractions\1.1. |
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
.subtle-shadow-with-transition{ | |
box-shadow: 3px 3px 10px -2px rgba(0, 0, 0, 0.3); | |
-webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1); | |
transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1); | |
} | |
.scale-up-size{ | |
-webkit-transform: scale(1.2, 1.2); | |
transform: scale(1.2, 1.2); | |
} |
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
"vim.easymotion": true, | |
"vim.leader": ",", | |
"vim.normalModeKeyBindings": [{ | |
"before": ["u"], | |
"after": [], | |
"commands": [{ | |
"command": "undo", | |
"args": [] | |
}] | |
}, |
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.Collections.Generic; | |
using Microsoft.CodeAnalysis; | |
using Microsoft.CodeAnalysis.CSharp.Syntax; | |
using System.Linq; | |
namespace Generator; | |
[Generator] | |
public class BasicStateGenerator : ISourceGenerator |