diff --git a/.gitignore b/.gitignore index 5548ce4..188ceee 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ venv/ HaskellCode/.vscode/tasks.json Notes/ + .vscode/* !.vscode/launch.json @@ -31,15 +32,19 @@ mono_crash.* [Rr]eleases/ x64/ x86/ + [Ww][Ii][Nn]32/ + [Aa][Rr][Mm]/ [Aa][Rr][Mm]64/ bld/ [Bb]in/ [Oo]bj/ [Ll]og/ + [Ll]ogs/ + # Visual Studio 2015/2017 cache/options directory .vs/ # Uncomment if you have tasks that create the project's static files in wwwroot @@ -98,7 +103,10 @@ StyleCopReport.xml *.tmp_proj *_wpftmp.csproj *.log + *.tlog + + *.vspscc *.vssscc .builds @@ -140,6 +148,9 @@ _ReSharper*/ *.[Rr]e[Ss]harper *.DotSettings.user +# JustCode is a .NET coding add-in +.JustCode + # TeamCity is a build add-in _TeamCity* @@ -202,8 +213,10 @@ PublishScripts/ # NuGet Packages *.nupkg + # NuGet Symbol Packages *.snupkg + # The packages folder can be ignored because of Package Restore **/[Pp]ackages/* # except build/, which is used as an MSBuild target. @@ -234,6 +247,7 @@ _pkginfo.txt *.appxbundle *.appxupload + # Visual Studio cache files # files ending in .cache can be ignored *.[Cc]ache @@ -259,6 +273,9 @@ orleans.codegen.cs # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) #bower_components/ +# ASP.NET Core default setup: bower directory is configured as wwwroot/lib/ and bower restore is true +**/wwwroot/lib/ + # RIA/Silverlight projects Generated_Code/ @@ -286,6 +303,7 @@ ServiceFabricBackup/ *- [Bb]ackup ([0-9]).rdl *- [Bb]ackup ([0-9][0-9]).rdl + # Microsoft Fakes FakesAssemblies/ @@ -320,6 +338,10 @@ paket-files/ # FAKE - F# Make .fake/ +# JetBrains Rider +.idea/ +*.sln.iml + # CodeRush personal settings .cr/personal @@ -361,6 +383,7 @@ ASALocalRun/ # Local History for Visual Studio .localhistory/ + # BeatPulse healthcheck temp database healthchecksdb @@ -393,4 +416,8 @@ FodyWeavers.xsd # JetBrains Rider .idea/ -*.sln.iml \ No newline at end of file +*.sln.iml + +# BeatPulse healthcheck temp database +healthchecksdb + diff --git a/Source Code/TeamHobby.HobbyProjectGenerator/Class1.cs b/Source Code/TeamHobby.HobbyProjectGenerator/Class1.cs new file mode 100644 index 0000000..77436d6 --- /dev/null +++ b/Source Code/TeamHobby.HobbyProjectGenerator/Class1.cs @@ -0,0 +1,12 @@ +using System; + +namespace TeamHobby.HobbyProjectGenerator +{ + public class Class1 + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} \ No newline at end of file diff --git a/Source Code/TeamHobby.HobbyProjectGenerator/TeamHobby.HobbyProjectGenerator.csproj b/Source Code/TeamHobby.HobbyProjectGenerator/TeamHobby.HobbyProjectGenerator.csproj new file mode 100644 index 0000000..132c02c --- /dev/null +++ b/Source Code/TeamHobby.HobbyProjectGenerator/TeamHobby.HobbyProjectGenerator.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/Source Code/TeamHobby.HobbyProjectGenerator/TeamHobby.HobbyProjectGenerator.sln b/Source Code/TeamHobby.HobbyProjectGenerator/TeamHobby.HobbyProjectGenerator.sln new file mode 100644 index 0000000..65b0f5b --- /dev/null +++ b/Source Code/TeamHobby.HobbyProjectGenerator/TeamHobby.HobbyProjectGenerator.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31919.166 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TeamHobby.HobbyProjectGenerator", "TeamHobby.HobbyProjectGenerator.csproj", "{C75B6909-FD9E-4382-94B6-7CA2CE371C9A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C75B6909-FD9E-4382-94B6-7CA2CE371C9A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C75B6909-FD9E-4382-94B6-7CA2CE371C9A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C75B6909-FD9E-4382-94B6-7CA2CE371C9A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C75B6909-FD9E-4382-94B6-7CA2CE371C9A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {B2517200-A9F9-468C-B0EB-280FF9B9FBC9} + EndGlobalSection +EndGlobal