Skip to content

Instantly share code, notes, and snippets.

@FeodorFitsner
Last active July 15, 2022 17:22
Show Gist options
  • Save FeodorFitsner/3b79fd2b0638632804a656c5d86451c7 to your computer and use it in GitHub Desktop.
Save FeodorFitsner/3b79fd2b0638632804a656c5d86451c7 to your computer and use it in GitHub Desktop.
Test System special folder in .NET Core
image: Visual Studio 2019
build_script:
- dotnet --version
- mkdir test
- cd test
- dotnet new console
- type test.csproj
- echo using System;namespace MyApp{internal class Program{static void Main(string[] args){Console.WriteLine(Environment.GetFolderPath(Environment.SpecialFolder.System));}}} > Program.cs
- dotnet run
test: off
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment