Skip to content

Commit c3946cf

Browse files
authored
Merge pull request #19 from messerli-informatik-ag/system-collections-immutable-5
Allow System.Collections.Immutable to be Version 5.*.*
2 parents 232c838 + 7d15889 commit c3946cf

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CompositionRoot/CompositionRoot.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk; Microsoft.Build.CentralPackageVersions">
33
<PropertyGroup>
4-
<Version>0.2.1</Version>
4+
<Version>0.2.2</Version>
55
<AssemblyName>Messerli.CompositionRoot</AssemblyName>
66
<RootNamespace>Messerli.CompositionRoot</RootNamespace>
77
</PropertyGroup>

Packages.props

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<ItemGroup>
3+
<ItemGroup Label="Runtime Dependencies">
44
<PackageReference Update="Autofac" Version="$(AutofacVersion)" />
55
<PackageReference Update="Autofac" Version="[5.1.2, 7)" Condition="'$(AutofacVersion)' == '' Or '$(AutofacVersion)' == 'lowestSupported'" />
6+
<PackageReference Update="System.Collections.Immutable" Version="1.6" />
7+
</ItemGroup>
8+
<ItemGroup Label="Build Dependencies">
9+
<PackageReference Update="Messerli.CodeStyle" Version="[1.2.1, 2)" />
10+
</ItemGroup>
11+
<ItemGroup Label="Test Dependencies">
612
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="[15.9.2, 16)" />
7-
<PackageReference Update="System.Collections.Immutable" Version="[1.6, 2)" />
813
<PackageReference Update="xunit" Version="[2.4.1, 3)" />
914
<PackageReference Update="xunit.runner.visualstudio" Version="[2.4.1, 3)" />
10-
<PackageReference Update="Messerli.CodeStyle" Version="[1.2.1, 2)" />
1115
</ItemGroup>
1216
</Project>

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@
1313
## 0.2.1
1414
* Add compatibility for Autofac 6.x.
1515
* Only depend on `System.Collections.Immutable` when targeting .NET Standard.
16+
17+
## 0.2.2
18+
* Remove upper constraint on `System.Collections.Immutable`

0 commit comments

Comments
 (0)