├── .gitignore ├── LICENSE ├── README.md ├── WinVersionHack ├── WinVersionHack.cpp ├── WinVersionHack.sln ├── WinVersionHack.vcxproj └── WinVersionHack.vcxproj.filters ├── images ├── cpp_add_manifest.png ├── cs_add_manifest.png ├── winver_table.png └── winver_table_thumbnail.png ├── manifest_version_cpp ├── manifest.xml ├── manifest_version_cpp.cpp ├── manifest_version_cpp.sln ├── manifest_version_cpp.vcxproj └── manifest_version_cpp.vcxproj.filters ├── manifest_version_csharp ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── app.manifest ├── manifest_version_csharp.csproj └── manifest_version_csharp.sln ├── win_version_cpp ├── win_version_cpp.sln └── win_version_cpp │ ├── WinVersion.cpp │ ├── WinVersion.h │ ├── win_version_cpp.cpp │ ├── win_version_cpp.vcxproj │ └── win_version_cpp.vcxproj.filters └── win_version_csharp ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── WinVersion.cs ├── win_version_csharp.csproj └── win_version_csharp.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/README.md -------------------------------------------------------------------------------- /WinVersionHack/WinVersionHack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/WinVersionHack/WinVersionHack.cpp -------------------------------------------------------------------------------- /WinVersionHack/WinVersionHack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/WinVersionHack/WinVersionHack.sln -------------------------------------------------------------------------------- /WinVersionHack/WinVersionHack.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/WinVersionHack/WinVersionHack.vcxproj -------------------------------------------------------------------------------- /WinVersionHack/WinVersionHack.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/WinVersionHack/WinVersionHack.vcxproj.filters -------------------------------------------------------------------------------- /images/cpp_add_manifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/images/cpp_add_manifest.png -------------------------------------------------------------------------------- /images/cs_add_manifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/images/cs_add_manifest.png -------------------------------------------------------------------------------- /images/winver_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/images/winver_table.png -------------------------------------------------------------------------------- /images/winver_table_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/images/winver_table_thumbnail.png -------------------------------------------------------------------------------- /manifest_version_cpp/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/manifest_version_cpp/manifest.xml -------------------------------------------------------------------------------- /manifest_version_cpp/manifest_version_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/manifest_version_cpp/manifest_version_cpp.cpp -------------------------------------------------------------------------------- /manifest_version_cpp/manifest_version_cpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/manifest_version_cpp/manifest_version_cpp.sln -------------------------------------------------------------------------------- /manifest_version_cpp/manifest_version_cpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/manifest_version_cpp/manifest_version_cpp.vcxproj -------------------------------------------------------------------------------- /manifest_version_cpp/manifest_version_cpp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/manifest_version_cpp/manifest_version_cpp.vcxproj.filters -------------------------------------------------------------------------------- /manifest_version_csharp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/manifest_version_csharp/App.config -------------------------------------------------------------------------------- /manifest_version_csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/manifest_version_csharp/Program.cs -------------------------------------------------------------------------------- /manifest_version_csharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/manifest_version_csharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /manifest_version_csharp/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/manifest_version_csharp/app.manifest -------------------------------------------------------------------------------- /manifest_version_csharp/manifest_version_csharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/manifest_version_csharp/manifest_version_csharp.csproj -------------------------------------------------------------------------------- /manifest_version_csharp/manifest_version_csharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/manifest_version_csharp/manifest_version_csharp.sln -------------------------------------------------------------------------------- /win_version_cpp/win_version_cpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/win_version_cpp/win_version_cpp.sln -------------------------------------------------------------------------------- /win_version_cpp/win_version_cpp/WinVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/win_version_cpp/win_version_cpp/WinVersion.cpp -------------------------------------------------------------------------------- /win_version_cpp/win_version_cpp/WinVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/win_version_cpp/win_version_cpp/WinVersion.h -------------------------------------------------------------------------------- /win_version_cpp/win_version_cpp/win_version_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/win_version_cpp/win_version_cpp/win_version_cpp.cpp -------------------------------------------------------------------------------- /win_version_cpp/win_version_cpp/win_version_cpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/win_version_cpp/win_version_cpp/win_version_cpp.vcxproj -------------------------------------------------------------------------------- /win_version_cpp/win_version_cpp/win_version_cpp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/win_version_cpp/win_version_cpp/win_version_cpp.vcxproj.filters -------------------------------------------------------------------------------- /win_version_csharp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/win_version_csharp/App.config -------------------------------------------------------------------------------- /win_version_csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/win_version_csharp/Program.cs -------------------------------------------------------------------------------- /win_version_csharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/win_version_csharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /win_version_csharp/WinVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/win_version_csharp/WinVersion.cs -------------------------------------------------------------------------------- /win_version_csharp/win_version_csharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/win_version_csharp/win_version_csharp.csproj -------------------------------------------------------------------------------- /win_version_csharp/win_version_csharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/win_version_detection/HEAD/win_version_csharp/win_version_csharp.sln --------------------------------------------------------------------------------