close
Skip to content

Tags: spring-projects/spring-net

Tags

v3.1.0

Toggle v3.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Pass the build's versions to the examples MSBuild call (#352)

Four example solutions include the src/Spring projects directly - Northwind
and the Quartz example are built by CompileExamples, SpringAir and
WebQuickStart are skipped - so MSBuild's Rebuild recompiles Spring.Core and
friends straight back into build/$(Configuration)/.

That call passed no version properties, so the rebuild stamped the SDK default
1.0.0.0 over what CompileSolution had produced. While every assembly was
1.0.0.0 this was invisible. Now that CompileSolution sets real versions it is
a hard failure: the clobbered Spring.Core is 1.0.0.0 while the copies already
distributed into the other projects' output folders are 3.1.0.0, and the next
example to reference two Spring assemblies dies with

  error CS1705: Assembly 'Spring.Messaging' ... uses 'Spring.Core,
  Version=3.1.0.0' which has a higher version than referenced assembly
  'Spring.Core' with identity 'Spring.Core, Version=1.0.0.0'

Apply the same versions to the MSBuild invocation. MSBuildSettings has no
VersionPrefix/VersionSuffix setter, so those two go through SetProperty.

Reproduced and verified locally with dotnet build on the Quartz example
solution, which takes the same path: building it without version arguments
takes build/Release/Spring.Core/net462/Spring.Core.dll from 3.1.0.0 to
1.0.0.0, and building it with them leaves it at 3.1.0.0.

Signed-off-by: Marko Lahma <marko.lahma@gmail.com>
Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>

v3.0.3

Toggle v3.0.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump @fortawesome/react-fontawesome from 0.2.2 to 0.2.3 in /website (#…

…301)

Bumps [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) from 0.2.2 to 0.2.3.
- [Release notes](https://github.com/FortAwesome/react-fontawesome/releases)
- [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/0.2.x/CHANGELOG.md)
- [Commits](FortAwesome/react-fontawesome@0.2.2...0.2.3)

---
updated-dependencies:
- dependency-name: "@fortawesome/react-fontawesome"
  dependency-version: 0.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v3.0.2

Toggle v3.0.2's commit message
Release 3.0.2 preparations

v3.0.1

Toggle v3.0.1's commit message
Update publish logic

v3.0.0

Toggle v3.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add GitHub Actions configuration (#201)

* new build system based on NUKE build
* support test running on Linux

spring-net-2.0.0-RC1

Toggle spring-net-2.0.0-RC1's commit message
set build-packaging files for 2.0.0-RC1 release