Skip to content

Instantly share code, notes, and snippets.

@Alezis
Alezis / Startup.cs
Last active June 10, 2020 11:58
Swashbuckle.AspNetCore AND Microsoft.AspNetCore.Mvc.Versioning
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
@Alezis
Alezis / UpdateVersionInfo.ps1
Last active January 23, 2017 12:05
Inject into version ChangesetID like ( 2.0.0.5556), where changesetID = "C5556". Script processes AssemblyInfo.cs and project.json...and can be improved.
function Update-VersionInFiles
{
Param
(
[Parameter(Mandatory=$false)]
[string]$SourceDir
)
Write-Host "Starting update versions of source files..."