├── .gitignore ├── DotNetVersions.csproj ├── DotNetVersions.sln ├── LICENSE ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── app.config ├── dotnetversions.ico ├── dotnetversions.png └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmalarcon/DotNetVersions/HEAD/.gitignore -------------------------------------------------------------------------------- /DotNetVersions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmalarcon/DotNetVersions/HEAD/DotNetVersions.csproj -------------------------------------------------------------------------------- /DotNetVersions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmalarcon/DotNetVersions/HEAD/DotNetVersions.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmalarcon/DotNetVersions/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmalarcon/DotNetVersions/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmalarcon/DotNetVersions/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmalarcon/DotNetVersions/HEAD/app.config -------------------------------------------------------------------------------- /dotnetversions.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmalarcon/DotNetVersions/HEAD/dotnetversions.ico -------------------------------------------------------------------------------- /dotnetversions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmalarcon/DotNetVersions/HEAD/dotnetversions.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmalarcon/DotNetVersions/HEAD/readme.md --------------------------------------------------------------------------------