Skip to content

Commit 15ecea8

Browse files
committed
Support .net 5
1 parent 6db3bf1 commit 15ecea8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

DigitalRuby.SimpleDi/DigitalRuby.SimpleDi.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7+
<LangVersion>latest</LangVersion>
78
<OutputType>Library</OutputType>
89
<IsPackable>true</IsPackable>
910
<Title>DigitalRuby.SimpleDi</Title>
1011
<Description>Simple, declarative dependency injection and configuration using attributes - without all the boilerplate code.</Description>
11-
<Version>1.0.8</Version>
12+
<Version>1.0.9</Version>
1213
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1314
<Company>Digital Ruby, LLC</Company>
1415
<Copyright>(c) 2022-Present Digital Ruby, LLC</Copyright>
@@ -18,7 +19,7 @@
1819
<PackageReadmeFile>Readme.md</PackageReadmeFile>
1920
<RepositoryUrl>https://github.com/DigitalRuby/SimpleDi</RepositoryUrl>
2021
<PackageTags>di;dependency;injection;reflection;configuration;C#;.NET;easy;simple;servicecollection;webhost;hostbuilder</PackageTags>
21-
<PackageReleaseNotes>Throw exception if configuration cannot bind</PackageReleaseNotes>
22+
<PackageReleaseNotes>Support .NET 5</PackageReleaseNotes>
2223
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2324
<PackageIcon>icon.png</PackageIcon>
2425
</PropertyGroup>

0 commit comments

Comments
 (0)