Skip to content

Commit

Permalink
increased min model version from *68 to *72 (#309)
Browse files Browse the repository at this point in the history
* increased min model version from *68 to *72

this removes support for FW8 projects. before, it was causing LfMerge to crash. now, doing this in LF displays the desired red box and maintains a good state for that user.
  • Loading branch information
josephmyers authored Sep 26, 2022
1 parent ad83383 commit 0faa390
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/LfMerge.Core.Tests/MainClassTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public void FixtureTearDown()

[TestCase("7000060", ExpectedResult = false)]
[TestCase("7000067", ExpectedResult = false)]
[TestCase("7000068", ExpectedResult = true)]
[TestCase("7000069", ExpectedResult = true)]
[TestCase("7000068", ExpectedResult = false)]
[TestCase("7000069", ExpectedResult = false)]
[TestCase("7000071", ExpectedResult = false)]
[TestCase("7000072", ExpectedResult = true)]
public bool IsSupportedModelVersion(string modelVersion)
Expand Down
2 changes: 1 addition & 1 deletion src/LfMerge.Core/MagicStrings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public static class MagicStrings
{
static MagicStrings()
{
MinimalModelVersion = 7000068;
MinimalModelVersion = 7000072;
}

// Environment variables used by LfMerge
Expand Down

0 comments on commit 0faa390

Please sign in to comment.