Skip to content

Commit

Permalink
Fixed bug in nuspec
Browse files Browse the repository at this point in the history
  • Loading branch information
gautema committed Feb 21, 2020
1 parent fbce3df commit 6682c81
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CQRSlite.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<package>
<metadata>
<id>CqrsLite</id>
<version>1.30.0</version>
<version>1.30.1</version>
<authors>Gaute Magnussen</authors>
<license type="file">license.md</license>
<projectUrl>https://github.com/gautema/cqrslite</projectUrl>
<iconUrl>https://raw.githubusercontent.com/gautema/gautema_logo/master/gautema_logo64.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A lightweight framework to help write CQRS and Eventsourcing applications in C#</description>
<copyright>Copyright 2019</copyright>
<copyright>Copyright 2020</copyright>
<dependencies>
<group targetFramework=".NETFramework4.5.2">
</group>
Expand All @@ -20,7 +20,7 @@
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="Microsoft.CSharp" version="4.5.0" />
<dependency id="Microsoft.Extensions.Caching.Memory" version="2.2.0" />
<dependency id="Microsoft.Extensions.Caching.Memory" version="3.1.2" />
</group>
</dependencies>
</metadata>
Expand Down
2 changes: 1 addition & 1 deletion Framework/CQRSlite/CQRSlite.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.3;netstandard2.0;net452</TargetFrameworks>
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard1.3'">
<NetStandardImplicitPackageVersion>1.6.0</NetStandardImplicitPackageVersion>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Great introductions to CQRS and CQRSlite have been written by others. Here are t
To install CQRSlite, it you could either download the files and copy whats needed into your project, you can clone this project and reference it, or you can download releases from nuget. You will have to implement your own eventstore or use an exsiting eventstore with an adapter to fit the IEventStore interface.

## License
Copyright 2019 Gaute Magnussen
Copyright 2020 Gaute Magnussen

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion license.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## License
Copyright 2019 Gaute Magnussen
Copyright 2020 Gaute Magnussen

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down

0 comments on commit 6682c81

Please sign in to comment.