Skip to content

Commit e644aa9

Browse files
committed
Removed package warnings & Updated change documentation
1 parent 27c754a commit e644aa9

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

BeanIO.sln

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1010
BeanIO.ruleset = BeanIO.ruleset
1111
GitVersion.yml = GitVersion.yml
1212
Directory.Build.props = Directory.Build.props
13+
README.md = README.md
14+
LICENSE.txt = LICENSE.txt
1315
EndProjectSection
1416
EndProject
1517
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{E65ED37A-52A5-41A8-B7C9-B892C87AFB40}"

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@
44

55
# Latest changes
66

7+
## 5.0.0
8+
9+
* Using Nullable Reference Types
10+
* NuGet updates
11+
* NodaTime 3.1.10
12+
* Minimum target framework is
13+
* .NET Framework 4.7.2
14+
* .NET Standard 2.0
15+
* .NET 6.0
16+
* C++/CLI is only supported when using `PackageReference` instead of `packages.config`
17+
718
## 4.1.0
819

920
* Supports a new experimental property accessor factory `asm` which uses compiled expression trees instead of reflection

src/FubarDev.BeanIO/FubarDev.BeanIO.csproj

+6-7
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,23 @@
1515
- Minimum .NET Framework version is 4.7.2
1616
- Dropped support for .NET Standard below 2.0
1717
- Dropped support für C++/CLI when not using PackageReference</PackageReleaseNotes>
18-
<PackageIconUrl>https://github.com/FubarDevelopment/beanio-net/raw/master/beanio-logo.png</PackageIconUrl>
19-
<PackageProjectUrl>https://github.com/FubarDevelopment/beanio-net</PackageProjectUrl>
20-
<PackageLicenseUrl>http://opensource.org/licenses/MIT</PackageLicenseUrl>
21-
<RepositoryType>git</RepositoryType>
22-
<RepositoryUrl>https://github.com/FubarDevelopment/beanio-net</RepositoryUrl>
18+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
19+
<PackageReadmeFile>README.md</PackageReadmeFile>
20+
<PackageIconUrl>beanio-logo.png</PackageIconUrl>
21+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2322
</PropertyGroup>
2423

2524
<ItemGroup>
2625
<InternalsVisibleTo Include="$(AssemblyName).Test" />
2726
</ItemGroup>
2827

2928
<ItemGroup>
30-
<AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" />
29+
<AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" Visible="false" />
3130
<None Include="Xsd\**\*">
3231
<PackagePath>src/Xsd/</PackagePath>
3332
<Pack>true</Pack>
3433
</None>
35-
<None Include="..\..\*.md;..\..\beanio-logo.png;..\..\LICENSE.txt">
34+
<None Include="..\..\*.md;..\..\beanio-logo.png;..\..\LICENSE.txt" Visible="false">
3635
<PackagePath>/</PackagePath>
3736
<Pack>true</Pack>
3837
</None>

0 commit comments

Comments
 (0)