├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── auto-merge.yml │ ├── codeql.yml │ └── dotnet.yml ├── .gitignore ├── LICENSE ├── README.md ├── SteamCollectionDownloadSizeCalculator.sln ├── src ├── Program.cs ├── SteamCollectionDownloadSizeCalculator.csproj └── logo.ico └── tests ├── ProgramTest.cs └── SteamCollectionDownloadSizeCalculatorTests.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/README.md -------------------------------------------------------------------------------- /SteamCollectionDownloadSizeCalculator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/SteamCollectionDownloadSizeCalculator.sln -------------------------------------------------------------------------------- /src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/src/Program.cs -------------------------------------------------------------------------------- /src/SteamCollectionDownloadSizeCalculator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/src/SteamCollectionDownloadSizeCalculator.csproj -------------------------------------------------------------------------------- /src/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/src/logo.ico -------------------------------------------------------------------------------- /tests/ProgramTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/tests/ProgramTest.cs -------------------------------------------------------------------------------- /tests/SteamCollectionDownloadSizeCalculatorTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianLeChat/Steam-Collection-Download-Size-Calculator/HEAD/tests/SteamCollectionDownloadSizeCalculatorTests.csproj --------------------------------------------------------------------------------