Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Snittlistan.Test/Snittlistan.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
<TargetFrameworkProfile />
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -174,7 +175,7 @@
<Version>6.0.1</Version>
</PackageReference>
<PackageReference Include="System.Collections.Immutable">
<Version>10.0.1</Version>
<Version>8.0.0</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
6 changes: 0 additions & 6 deletions Snittlistan.Test/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,6 @@
<bindingRedirect oldVersion="4.1.3.0" newVersion="4.1.4.0"/>
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" culture="neutral" publicKeyToken="b03f5f7f11d50a3a"/>
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Extensions" culture="neutral" publicKeyToken="cc7b13ffcd2ddd51"/>
Expand Down
9 changes: 7 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@
"enabled": false
},
{
"description": "Automerge updates",
"description": "Disable System.Collections.Immutable updates - locked at version 8.0.0 for .NET Framework compatibility",
"matchPackageNames": ["System.Collections.Immutable"],
"enabled": false
},
{
"description": "Disable automerge to prevent merging PRs with binding redirect issues",
"matchUpdateTypes": ["major", "minor", "patch"],
"automerge": true
"automerge": false
}
]
}
Loading