Skip to content

Commit 02016f5

Browse files
committed
[add] Explicit .NET 6 targeting
[add] NET Standard 2.0 targeting [del] .NET Standard 1.6 targeting [up Simplify.DI bump to 4.2.1
1 parent 3a3c529 commit 02016f5

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

src/Simplify.DI.Provider.CastleWindsor/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [1.7.1] - 2022-05-18
4+
5+
### Added
6+
7+
- Explicit .NET 6 targeting
8+
- .NET Standard 2.0 targeting
9+
10+
### Removed
11+
12+
- .NET Standard 1.6 targeting
13+
14+
### Dependencies
15+
16+
- Simplify.DI bump to 4.2.1
17+
318
## [1.7.0] - 2021-07-18
419

520
### Dependencies

src/Simplify.DI.Provider.CastleWindsor/Simplify.DI.Provider.CastleWindsor.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard1.6;net452</TargetFrameworks>
4-
<LangVersion>9.0</LangVersion>
3+
<TargetFrameworks>net6.0;netstandard2.0;net452</TargetFrameworks>
4+
<LangVersion>latest</LangVersion>
55
<Nullable>enable</Nullable>
66
<EmbedUntrackedSources>true</EmbedUntrackedSources>
77
<IncludeSymbols>true</IncludeSymbols>
88
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
99
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1010

11-
<Version>1.7</Version>
11+
<Version>1.7.1</Version>
1212

1313
<Authors>Alexander Krylkov</Authors>
1414
<Product>Simplify</Product>
@@ -23,7 +23,7 @@
2323
</PropertyGroup>
2424
<ItemGroup>
2525
<PackageReference Include="Castle.Windsor" Version="5.1.2" />
26-
<PackageReference Include="Simplify.DI" Version="4.1.*" />
26+
<PackageReference Include="Simplify.DI" Version="4.2.1" />
2727
</ItemGroup>
2828
<ItemGroup>
2929
<None Include="..\..\images\icon.png" Pack="true" Visible="false" PackagePath="" />

0 commit comments

Comments
 (0)