| 50 | |
| 51 | |
| 52 | class VS2022(Generator): |
| 53 | |
| 54 | def __init__(self): |
| 55 | super(VS2022, self).__init__(20) |
| 56 | |
| 57 | def get_generator(self): |
| 58 | return 'Visual Studio 17 2022' |
| 59 | |
| 60 | def get_arch(self): |
| 61 | return 'x64' |
| 62 | |
| 63 | def get_sdk_version(self): |
| 64 | return '8.1' |
| 65 | |
| 66 | |
| 67 | class VS2019(Generator): |
no outgoing calls
no test coverage detected