Skip to content

Commit

Permalink
Update copyright year
Browse files Browse the repository at this point in the history
  • Loading branch information
m-ringler committed Nov 12, 2024
1 parent 7887de9 commit a657854
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion czishrink/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"dotnet.defaultSolution": "netczicompress.sln"
"dotnet.defaultSolution": "netczicompress.sln",
"dotnet-test-explorer.testProjectPath": "**/*Tests.@(csproj|vbproj|fsproj)"
}
2 changes: 1 addition & 1 deletion czishrink/netczicompress/ViewModels/AboutViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public AboutViewModel(IFileLauncher launcher, IProgramNameAndVersion info)
this.ShowAboutCommand = ReactiveCommand.Create(() => this.IsVisible = true);
this.ShowTextFileCommand = ReactiveCommand.CreateFromTask<string>(this.OpenTextFile);
this.OpenUrlCommand = ReactiveCommand.CreateFromTask<string>(this.OpenUrlLink);
this.ProgramVersionAndCopyRight = $"{info}, © 2023 Carl Zeiss Microscopy GmbH and others";
this.ProgramVersionAndCopyRight = $"{info}, © 2023-2024 Carl Zeiss Microscopy GmbH and others";
this.launcher = launcher;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void AfterConstruction_HasExpectedProperties()
// ASSERT
sut.IsVisible.Should().BeFalse();
sut.LibraryName.Should().BeSameAs(libname);
sut.ProgramVersionAndCopyRight.Should().Be("FooBar 99.3.7, © 2023 Carl Zeiss Microscopy GmbH and others");
sut.ProgramVersionAndCopyRight.Should().Be("FooBar 99.3.7, © 2023-2024 Carl Zeiss Microscopy GmbH and others");
}

[Theory]
Expand Down

0 comments on commit a657854

Please sign in to comment.