Skip to content

Commit 6effc90

Browse files
Merge pull request #25 from messerli-informatik-ag/update-autofac-version
Update autofac version
2 parents e2d3d56 + 93103bd commit 6effc90

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
autofac: ['lowestSupported', '6.0.0']
17+
autofac: ['lowestSupported', '6.0.0', '7.1.0']
1818
steps:
1919
- uses: actions/checkout@v2
2020
- uses: actions/setup-dotnet@v1

CompositionRoot.Test/CompositionRoot.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
</PropertyGroup>
77
<PropertyGroup>
88
<IsPackable>false</IsPackable>
9-
<TargetFramework>net5.0</TargetFramework>
10-
<LangVersion>9.0</LangVersion>
9+
<TargetFramework>net8.0</TargetFramework>
10+
<LangVersion>12.0</LangVersion>
1111
<Nullable>enable</Nullable>
1212
</PropertyGroup>
1313
<ItemGroup>

CompositionRoot/CompositionRoot.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk; Microsoft.Build.CentralPackageVersions">
33
<PropertyGroup>
4-
<Version>1.1.1</Version>
4+
<Version>1.1.2</Version>
55
<AssemblyName>Messerli.CompositionRoot</AssemblyName>
66
<RootNamespace>Messerli.CompositionRoot</RootNamespace>
77
</PropertyGroup>
88
<PropertyGroup>
9-
<TargetFrameworks>netcoreapp3.1;netstandard2.1;netstandard2.0</TargetFrameworks>
10-
<LangVersion>9.0</LangVersion>
9+
<TargetFrameworks>net8.0;netstandard2.1;netstandard2.0</TargetFrameworks>
10+
<LangVersion>12.0</LangVersion>
1111
<Nullable>enable</Nullable>
1212
</PropertyGroup>
1313
<PropertyGroup>

Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="Runtime Dependencies">
44
<PackageReference Update="Autofac" Version="$(AutofacVersion)" />
5-
<PackageReference Update="Autofac" Version="[5.1.2, 7)" Condition="'$(AutofacVersion)' == '' Or '$(AutofacVersion)' == 'lowestSupported'" />
5+
<PackageReference Update="Autofac" Version="[5.1.2, 8)" Condition="'$(AutofacVersion)' == '' Or '$(AutofacVersion)' == 'lowestSupported'" />
66
<PackageReference Update="System.Collections.Immutable" Version="1.6" />
77
</ItemGroup>
88
<ItemGroup Label="Build Dependencies">

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,8 @@
2222
## 1.1.0
2323
* Add a new `Configure` method on `CompositionRootBuilder` that allows
2424
arbitrary setup code to run on the underlying `ContainerBuilder`.
25+
26+
## 1.1.2
27+
* Add `TargetFramework` `net8.0`.
28+
* Remove `TargetFramework` `netcoreapp3.1`.
29+
* Update `Autofac` to `7.1.0`.

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "5.0.402",
3+
"version": "8.0.100",
44
"rollForward": "latestFeature"
55
},
66
"msbuild-sdks": {

0 commit comments

Comments
 (0)