This file contains hidden or 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
| rem https://github.com/microsoft/winget-cli/releases | |
| rem iwr -useb get.scoop.sh | iex | |
| rem iwr -useb https://community.chocolatey.org/install.ps1 | iex | |
| rem ensure winget settings has experimentalFeatures.experimentalMSStore = true | |
| rem see https://www.thomasmaurer.ch/2021/01/install-apps-from-the-microsoft-store-using-winget/ | |
| scoop bucket add extras | |
| scoop bucket add github-gh https://github.com/cli/scoop-gh.git |
This file contains hidden or 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
| pool: | |
| vmImage: 'windows-2019' | |
| steps: | |
| - checkout: self | |
| - task: UseDotNet@2 | |
| inputs: | |
| packageType: sdk | |
| version: 3.1.x | |
| performMultiLevelLookup: true |
This file contains hidden or 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
| /// <summary> | |
| /// Provides access to the current assembly information as pure constants, | |
| // without requiring reflection. | |
| /// </summary> | |
| partial class ThisAssembly | |
| { | |
| /// <summary> | |
| /// Gets the assembly metadata. | |
| /// </summary> | |
| public static partial class Metadata |
This file contains hidden or 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
| <Project> | |
| <ItemGroup> | |
| <PackageReference Update="GitInfo" Version="2.0.20" PrivateAssets="all" /> | |
| <PackageReference Update="Newtonsoft.Json" DefaultVersion="12.0.3" /> | |
| </ItemGroup> | |
| </Project> |
This file contains hidden or 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
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "defaultProfile": "{63661ee7-c8c4-434e-8579-f6112c77101f}", | |
| "requestedTheme": "dark", | |
| "profiles": | |
| { |
This file contains hidden or 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
| <Project> | |
| <Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> | |
| <PropertyGroup> | |
| <TargetFramework>netstandard1.0</TargetFramework> | |
| <IsPackable>true</IsPackable> | |
| <IncludeBuildOutput>false</IncludeBuildOutput> | |
| <ContentTargetFolders>contentFiles</ContentTargetFolders> | |
| <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences> |
This file contains hidden or 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
| <Project> | |
| <Target Name="IncludePackageReferenceInVSIX" | |
| Condition="$(CI)" | |
| Inputs="@(PackageReference -> WithMetadataValue('IncludeInVSIX', 'true'))" | |
| Outputs="%(PackageReference.Identity)" | |
| DependsOnTargets="ResolvePackageAssets" | |
| AfterTargets="ResolveReferences"> | |
| <PropertyGroup> | |
| <IncludeInVSIXPackageId>%(PackageReference.Identity)</IncludeInVSIXPackageId> | |
| </PropertyGroup> |
This file contains hidden or 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
| // Requires package reference to https://www.nuget.org/packages/symspell | |
| using System; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| class Program | |
| { | |
| static void Main(string[] args) |
This file contains hidden or 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
| ok |
This file contains hidden or 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
| query { | |
| organization(login: "moq") { | |
| repository(name: "moq") { | |
| dependencyGraphManifests(withDependencies: true) { | |
| nodes { | |
| filename | |
| dependencies { | |
| nodes { | |
| packageManager | |
| packageName |