commit 386a993531fc0b3ec5ba023ab1d6db60bd317eb2 Author: Filip Strajnar Date: Fri Mar 15 21:50:57 2024 +0100 Initial structure. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2109374 --- /dev/null +++ b/.gitignore @@ -0,0 +1,136 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.sln.docstates + +# Build results + +[Dd]ebug/ +[Rr]elease/ +x64/ +[Bb]in/ +[Oo]bj/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +*_i.c +*_p.c +*_i.h +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.log +*.svclog +*.scc + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opensdf +*.sdf +*.cachefile + +# Visual Studio profiler +*.psess +*.vsp +*.vspx + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# Click-Once directory +publish/ + +# Publish Web Output +*.Publish.xml +*.pubxml +*.azurePubxml + +# NuGet Packages Directory +## TODO: If you have NuGet Package Restore enabled, uncomment the next line +packages/ +## TODO: If the tool you use requires repositories.config, also uncomment the next line +!packages/repositories.config + +# Windows Azure Build Output +csx/ +*.build.csdef + +# Windows Store app package directory +AppPackages/ + +# Others +sql/ +*.Cache +ClientBin/ +[Ss]tyle[Cc]op.* +![Ss]tyle[Cc]op.targets +~$* +*~ +*.dbmdl +*.[Pp]ublish.xml + +*.publishsettings + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file to a newer +# Visual Studio version. Backup files are not needed, because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +App_Data/*.mdf +App_Data/*.ldf + +# ========================= +# Windows detritus +# ========================= + +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Mac desktop service store files +.DS_Store + +_NCrunch* + +/DiscordClient.TestApp +.idea \ No newline at end of file diff --git a/DiscordClient.sln b/DiscordClient.sln new file mode 100644 index 0000000..5f544a6 --- /dev/null +++ b/DiscordClient.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DiscordClient", "DiscordClient\DiscordClient.csproj", "{DA0AF052-1C73-474C-A7C5-BC05D288CED1}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DA0AF052-1C73-474C-A7C5-BC05D288CED1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DA0AF052-1C73-474C-A7C5-BC05D288CED1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DA0AF052-1C73-474C-A7C5-BC05D288CED1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DA0AF052-1C73-474C-A7C5-BC05D288CED1}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/DiscordClient/DiscordClient.cs b/DiscordClient/DiscordClient.cs new file mode 100644 index 0000000..f774057 --- /dev/null +++ b/DiscordClient/DiscordClient.cs @@ -0,0 +1,5 @@ +namespace DiscordClient; + +public class DiscordClient +{ +} \ No newline at end of file diff --git a/DiscordClient/DiscordClient.csproj b/DiscordClient/DiscordClient.csproj new file mode 100644 index 0000000..3a63532 --- /dev/null +++ b/DiscordClient/DiscordClient.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + +