Skip to content

Commit 6caa35f

Browse files
committed
Fix netcoreapp runtime error
1 parent 132e934 commit 6caa35f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TeamTools.Linter.CommandLine/TeamTools.Linter.CommandLine.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<!-- Later framework version contain the System.Text.Encoding.CodePages library.
2626
Also newer versions lead to unexpected troubles in runtime.
2727
Thus including it for netstandard2.0 only and with very old version number. -->
28-
<PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" PrivateAssets="All" Condition="$(targetFramework)=='netcoreapp3.1'" />
28+
<PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" Condition="$(targetFramework)=='netcoreapp3.1'" />
2929
<ProjectReference Include="..\TeamTools.TSQL.Common\TeamTools.Common.Linting.csproj" />
3030
</ItemGroup>
3131

0 commit comments

Comments
 (0)