Skip to content

Instantly share code, notes, and snippets.

View WillEhrendreich's full-sized avatar
🦔
Have you tried fsharp?

Will Ehrendreich WillEhrendreich

🦔
Have you tried fsharp?
View GitHub Profile
@WillEhrendreich
WillEhrendreich / CustomDotnetNewScript.ps1
Created December 22, 2023 17:54
dotnet new behavior, sets lang, adds properties to proj file, output path changes, publish settings, extra flags, writes launch.json, global.json, etc.
function Create-VSCodeLaunchJson()
{
param(
[Parameter(Mandatory=$true)]
[string]$projectName,
[Parameter(Mandatory=$true)]
[string]$projectExtension,
[Parameter(Mandatory=$true)]
[string]$vscodeDir)
@WillEhrendreich
WillEhrendreich / Inventor.exe.config
Created October 12, 2022 16:06
Altered Inventor.exe.config with AssemblyBindingRedirect for Fsharp.core and Logging.Abstractions
<?xml version="1.0" encoding="utf-8"?>
<!-- //inventor/Main/sources/AppFw/app/Inventor.exe.config -->
<!-- This config file is mastered to Bin\Inventor.exe.config by //inventor/Main/sources/AppFw/app/app.install.xml -->
<configuration>
<configSections>
<sectionGroup name="autodesk.inventor.content">
<section name="logging" type="System.Configuration.DictionarySectionHandler,system, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null"/>
</sectionGroup>
<section name="microsoft.web.services3" type="Microsoft.Web.Services3.Configuration.WebServicesConfiguration, Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />