Skip to content

Commit 4f3b593

Browse files
committed
netcoreapp runtime error fix attempt
1 parent 132e934 commit 4f3b593

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Build .NET lib
55

66
on:
77
push:
8-
branches: ["main"]
8+
branches: ["develop"]
99
pull_request:
1010
branches: ["main"]
1111
workflow_dispatch:

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)