Skip to content

Instantly share code, notes, and snippets.

View IvanStoychev's full-sized avatar
🦾
Automate everything!

Ivan Stoychev IvanStoychev

🦾
Automate everything!
  • Sofia, Bulgaria
View GitHub Profile
@IvanStoychev
IvanStoychev / !CsProj elements
Last active April 9, 2023 11:44
Options that can be used in a C# project file.
<PropertyGroup>
<!-- Changes the application type depending on the build configuration. -->
<!-- In this case in "Debug" it will be a console application, while in "Release" a normal windows application. -->
<!-- This is used so in "Debug" status messages can be pumped to the console, while skipped for the end user in "Release". -->
<OutputType Condition="'$(Configuration)'=='Debug'">Exe</OutputType>
<OutputType Condition="'$(Configuration)'=='Release'">WinExe</OutputType>
<!-- Most-used framework by me. Specifying it like this simplifies some things. -->
<TargetFramework>net6.0-windows</TargetFramework>
@IvanStoychev
IvanStoychev / !C# code samples
Last active June 23, 2020 21:37
C# code samples
This is a collection of useful pieces of C# code that are ready to be used as they are.
@IvanStoychev
IvanStoychev / !SQL scripts
Last active December 8, 2021 11:26
SQL scripts
This is a collection of useful SQL scripts that are either templates or fully implemented functionalitites.
Each script includes a description about itself.
@IvanStoychev
IvanStoychev / !Powershell scripts
Last active August 7, 2020 17:11
Powershell scripts
A collection of scripts, each serving a purpose to lighten a programmer's load and/or automate some process to an extent.