Skip to content
View crgrieve's full-sized avatar

Block or report crgrieve

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. CanConUmbrackathon CanConUmbrackathon Public

    Forked from CandidContributions/CanConUmbrackathon-2020

    The GitHub home of the Candid Contributions' 2020 Hacktoberfest virtual Umbraco hackathon

    1

  2. Umbraco Discord Webhook Umbraco Discord Webhook
    1
    using System;
    2
    using System.IO;
    3
    using System.Net;
    4
    using System.Web.Script.Serialization;
    5
    using Umbraco.Core;
  3. C# 9 init properties C# 9 init properties
    1
    public record Meetup 
    2
    { 
    3
        public string City { get; init; }
    4
        public string Topic { get; set; }
    5
    }
  4. An example Program.cs for Umbraco v9... An example Program.cs for Umbraco v9 project with usings refactored to a global file.
    1
    namespace DotNet6Umbraco
    2
    {
    3
        public class Program
    4
        {
    5
            public static void Main(string[] args)
  5. Umbraco v9 startup.cs with Swagger Umbraco v9 startup.cs with Swagger
    1
    using System;
    2
    using Microsoft.AspNetCore.Builder;
    3
    using Microsoft.AspNetCore.Hosting;
    4
    using Microsoft.Extensions.Configuration;
    5
    using Microsoft.Extensions.DependencyInjection;
  6. .Net 5 example WebAPI controller .Net 5 example WebAPI controller
    1
    using Microsoft.AspNetCore.Mvc;
    2
    using Microsoft.Extensions.Logging;
    3
    using System;
    4
    using System.Collections.Generic;
    5
    using System.Linq;