Skip to content

Commit

Permalink
Fix configuration of unsupported VS versions
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed May 6, 2024
1 parent f37672b commit 8a97762
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/ue4docker/infrastructure/BuildConfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,10 @@ class VisualStudio(object):
VS2022: Version("5.0.0"),
}

UnsupportedSince = {VS2017: Version("5.0")}
UnsupportedSince = {VS2019: Version("5.4")}
UnsupportedSince = {
VS2017: Version("5.0"),
VS2019: Version("5.4"),
}


class ExcludedComponent(object):
Expand Down

0 comments on commit 8a97762

Please sign in to comment.