Skip to content

Commit

Permalink
Merge pull request #25 from messerli-informatik-ag/update-autofac-ver…
Browse files Browse the repository at this point in the history
…sion

Update autofac version
  • Loading branch information
csillikd-messerli authored Jan 8, 2024
2 parents e2d3d56 + 93103bd commit 6effc90
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
autofac: ['lowestSupported', '6.0.0']
autofac: ['lowestSupported', '6.0.0', '7.1.0']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
Expand Down
4 changes: 2 additions & 2 deletions CompositionRoot.Test/CompositionRoot.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
</PropertyGroup>
<PropertyGroup>
<IsPackable>false</IsPackable>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>9.0</LangVersion>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions CompositionRoot/CompositionRoot.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk; Microsoft.Build.CentralPackageVersions">
<PropertyGroup>
<Version>1.1.1</Version>
<Version>1.1.2</Version>
<AssemblyName>Messerli.CompositionRoot</AssemblyName>
<RootNamespace>Messerli.CompositionRoot</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;netstandard2.1;netstandard2.0</TargetFrameworks>
<LangVersion>9.0</LangVersion>
<TargetFrameworks>net8.0;netstandard2.1;netstandard2.0</TargetFrameworks>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="Runtime Dependencies">
<PackageReference Update="Autofac" Version="$(AutofacVersion)" />
<PackageReference Update="Autofac" Version="[5.1.2, 7)" Condition="'$(AutofacVersion)' == '' Or '$(AutofacVersion)' == 'lowestSupported'" />
<PackageReference Update="Autofac" Version="[5.1.2, 8)" Condition="'$(AutofacVersion)' == '' Or '$(AutofacVersion)' == 'lowestSupported'" />
<PackageReference Update="System.Collections.Immutable" Version="1.6" />
</ItemGroup>
<ItemGroup Label="Build Dependencies">
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@
## 1.1.0
* Add a new `Configure` method on `CompositionRootBuilder` that allows
arbitrary setup code to run on the underlying `ContainerBuilder`.

## 1.1.2
* Add `TargetFramework` `net8.0`.
* Remove `TargetFramework` `netcoreapp3.1`.
* Update `Autofac` to `7.1.0`.
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "5.0.402",
"version": "8.0.100",
"rollForward": "latestFeature"
},
"msbuild-sdks": {
Expand Down

0 comments on commit 6effc90

Please sign in to comment.