Skip to content

Commit

Permalink
Drop .NET 7
Browse files Browse the repository at this point in the history
- Remove `net7.0` TFM.
- Bump version to 0.10.0.
  • Loading branch information
martincostello committed Jun 12, 2024
1 parent 2f4e88a commit b655724
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<UseArtifactsOutput>true</UseArtifactsOutput>
<AssemblyVersion>0.9.0.0</AssemblyVersion>
<VersionPrefix>0.9.2</VersionPrefix>
<AssemblyVersion>0.10.0.0</AssemblyVersion>
<VersionPrefix>0.10.0</VersionPrefix>
</PropertyGroup>
<PropertyGroup Condition=" '$(GITHUB_ACTIONS)' != '' ">
<VersionSuffix Condition=" '$(VersionSuffix)' == '' AND '$(GITHUB_HEAD_REF)' == '' ">beta.$(GITHUB_RUN_NUMBER)</VersionSuffix>
Expand Down
2 changes: 1 addition & 1 deletion PseudoLocalize/PseudoLocalize.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackAsTool>true</PackAsTool>
<PackageId>PseudoLocalize</PackageId>
<Summary>$(Description)</Summary>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<Title>PseudoLocalize</Title>
<ToolCommandName>pseudo-localize</ToolCommandName>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions PseudoLocalizer.Core.Tests/POProcessorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class POProcessorTests
private const string Test1FileName = "Test1.po";
private const string Test2FileName = "Test2.po";
private const string OutputFileName = "out.po";

[SetUp]
public void SetUp()
{
Expand Down Expand Up @@ -80,7 +80,7 @@ public void ShouldApplyMultipleTransformations()
FileAssert.AreEqual("Multiple.po", OutputFileName);
}


[Test]
public void ShouldThrowForBadInputFile()
{
Expand Down

0 comments on commit b655724

Please sign in to comment.