Upgrade to version 1.2.1 (small bug-fix for .NET 8.0 and DataContextChanged)

This commit is contained in:
Markus Ewald 2025-06-24 12:18:42 +02:00
parent ba91335e08
commit c3b5c942f3
7 changed files with 64 additions and 7 deletions

@ -1 +1 @@
Subproject commit 5fb433ad983e58725e0d25faa8968a75b3dfd178 Subproject commit c75a70e62924a9ee8c9ee416fafb2ce08b9d4dee

@ -1 +1 @@
Subproject commit d057f704497b63faa5e57c6330afb436a0d9708c Subproject commit b54d4372cbb2c80b29717245b02d95aca73ea2f1

@ -1 +1 @@
Subproject commit 573b7ab93d25034a649bdf401f5439ec15c165f5 Subproject commit 7ab5e860c3852bf4c14003955215e991df6bb201

@ -1 +1 @@
Subproject commit d3e1a3e24e7ff6615996ec9236495b6d1275de5c Subproject commit 79a465922086a74705df8fdab9f8999eea803b17

24
clean-all-build-outputs.cmd Executable file
View File

@ -0,0 +1,24 @@
::!%WinDir%\System32\cmd.exe
@ECHO OFF
setlocal enabledelayedexpansion
set dirs=
for /d %%D in (".\*") do (
set dirs=!dirs! "%%D\bin"
)
for /d %%D in (".\*") do (
set dirs=!dirs! "%%D\obj"
)
for /d %%D in (".\third-party\*") do (
set dirs=!dirs! "%%D\bin"
)
for /d %%D in (".\third-party\*") do (
set dirs=!dirs! "%%D\obj"
)
for %%D in (%dirs%) do (
if exist "%%D" (
rmdir /s /q "%%D"
)
)
endlocal

3
clean-all-build-outputs.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
rm -rf ./*/bin ./*/obj
rm -rf ./third-party/*/bin ./third-party/*/obj

View File

@ -1,5 +1,35 @@
@ECHO OFF @ECHO OFF
nuget pack Nuclex.Foundation.nuspec -Version 1.2.0 -Properties Configuration=Release dotnet build ^
nuget pack Nuclex.Foundation.Ninject.nuspec -Version 1.2.0 -Properties Configuration=Release "Nuclex.Support/Nuclex.Support (netstandard-2.0).csproj" ^
nuget pack Nuclex.Foundation.DependencyInjection.nuspec -Version 1.2.0 -Properties Configuration=Release --configuration Release
dotnet build ^
"Nuclex.Windows.Forms/Nuclex.Windows.Forms (net-4.6)(net-8.0).csproj" ^
--configuration Release ^
--no-dependencies
dotnet build ^
"Nuclex.Windows.Forms.Ninject/Nuclex.Windows.Forms.Ninject (net-4.6)(net-8.0).csproj" ^
--configuration Release ^
--no-dependencies
dotnet build ^
"Nuclex.Windows.Forms.DependencyInjection/Nuclex.Windows.Forms.DependencyInjection (net-4.6)(net-8.0).csproj" ^
--configuration Release ^
--no-dependencies
nuget pack ^
Nuclex.Foundation.nuspec ^
-Version 1.2.1 ^
-Properties Configuration=Release
nuget pack ^
Nuclex.Foundation.Ninject.nuspec ^
-Version 1.2.1 ^
-Properties Configuration=Release
nuget pack ^
Nuclex.Foundation.DependencyInjection.nuspec ^
-Version 1.2.1 ^
-Properties Configuration=Release