From 867e981140eeef42fb38f2965248d1418992eaa2 Mon Sep 17 00:00:00 2001 From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com> Date: Wed, 24 Sep 2025 20:17:24 +0900 Subject: [PATCH] chore: Specify IsPackable=false on Directory.Build.props, explicitly true for target packages. --- Directory.Build.props | 10 ++++++---- .../AvaloniaApplication1/AvaloniaApplication1.csproj | 2 -- sandbox/Benchmark/Benchmark.csproj | 1 - sandbox/BlazorApp1/BlazorApp1.csproj | 1 - .../BlazorWebAssemblyApp1/BlazorWebAssemblyApp1.csproj | 1 - sandbox/ConsoleApp1/ConsoleApp1.csproj | 1 - sandbox/MauiApp1/MauiApp1.csproj | 1 - .../MonoGameApplication1/MonoGameApplication1.csproj | 3 +-- sandbox/ReferenceBuilder/ReferenceBuilder.csproj | 1 - sandbox/WinFormsApp1/WinFormsApp1.csproj | 1 - sandbox/WinUI3App1/WinUI3App1.csproj | 9 ++++----- sandbox/WpfApp1/WpfApp1.csproj | 1 - src/R3.Avalonia/R3.Avalonia.csproj | 5 +---- src/R3.Blazor/R3.Blazor.csproj | 5 +---- src/R3.BlazorWebAssembly/R3.BlazorWebAssembly.csproj | 6 ++---- src/R3.Godot/R3.Godot.csproj | 3 ++- src/R3.LogicLooper/R3.LogicLooper.csproj | 4 +--- src/R3.Maui/R3.Maui.csproj | 5 +---- src/R3.MonoGame/R3.MonoGame.csproj | 5 +---- src/R3.Stride/R3.Stride.csproj | 4 +--- src/R3.Uno/R3.Uno.csproj | 5 +---- src/R3.WPF/R3.WPF.csproj | 5 +---- src/R3.WinForms/R3.WinForms.csproj | 6 ++---- src/R3.WinUI3/R3.WinUI3.csproj | 4 +--- src/R3/R3.csproj | 6 +----- tests/R3.Tests/R3.Tests.csproj | 1 - 26 files changed, 27 insertions(+), 69 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index bcde5233..75069f3e 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,7 +1,11 @@ + true + $(MSBuildThisFileDirectory)opensource.snk + + false $(Version) Cysharp Cysharp @@ -12,14 +16,12 @@ git MIT Icon.png - true - ../../opensource.snk - - ../../../../../../opensource.snk + + diff --git a/sandbox/AvaloniaApplication1/AvaloniaApplication1.csproj b/sandbox/AvaloniaApplication1/AvaloniaApplication1.csproj index caebe7f9..21167aa0 100644 --- a/sandbox/AvaloniaApplication1/AvaloniaApplication1.csproj +++ b/sandbox/AvaloniaApplication1/AvaloniaApplication1.csproj @@ -6,10 +6,8 @@ true app.manifest true - false - diff --git a/sandbox/Benchmark/Benchmark.csproj b/sandbox/Benchmark/Benchmark.csproj index aa4d3ad9..2a08674f 100644 --- a/sandbox/Benchmark/Benchmark.csproj +++ b/sandbox/Benchmark/Benchmark.csproj @@ -5,7 +5,6 @@ net8.0 enable enable - false diff --git a/sandbox/BlazorApp1/BlazorApp1.csproj b/sandbox/BlazorApp1/BlazorApp1.csproj index 263de5b2..48264daa 100644 --- a/sandbox/BlazorApp1/BlazorApp1.csproj +++ b/sandbox/BlazorApp1/BlazorApp1.csproj @@ -4,7 +4,6 @@ net8.0 enable enable - false diff --git a/sandbox/BlazorWebAssemblyApp1/BlazorWebAssemblyApp1.csproj b/sandbox/BlazorWebAssemblyApp1/BlazorWebAssemblyApp1.csproj index 4d48f52c..f1fb3e9d 100644 --- a/sandbox/BlazorWebAssemblyApp1/BlazorWebAssemblyApp1.csproj +++ b/sandbox/BlazorWebAssemblyApp1/BlazorWebAssemblyApp1.csproj @@ -4,7 +4,6 @@ net8.0 enable enable - false diff --git a/sandbox/ConsoleApp1/ConsoleApp1.csproj b/sandbox/ConsoleApp1/ConsoleApp1.csproj index f9e0148a..152f30cc 100644 --- a/sandbox/ConsoleApp1/ConsoleApp1.csproj +++ b/sandbox/ConsoleApp1/ConsoleApp1.csproj @@ -6,7 +6,6 @@ enable enable true - false diff --git a/sandbox/MauiApp1/MauiApp1.csproj b/sandbox/MauiApp1/MauiApp1.csproj index 9aa99769..1e307df1 100644 --- a/sandbox/MauiApp1/MauiApp1.csproj +++ b/sandbox/MauiApp1/MauiApp1.csproj @@ -20,7 +20,6 @@ true enable enable - false MauiApp1 diff --git a/sandbox/MonoGameApplication1/MonoGameApplication1.csproj b/sandbox/MonoGameApplication1/MonoGameApplication1.csproj index 8930a873..0ef28617 100644 --- a/sandbox/MonoGameApplication1/MonoGameApplication1.csproj +++ b/sandbox/MonoGameApplication1/MonoGameApplication1.csproj @@ -5,7 +5,6 @@ Major false false - false CS8002 @@ -31,4 +30,4 @@ - \ No newline at end of file + diff --git a/sandbox/ReferenceBuilder/ReferenceBuilder.csproj b/sandbox/ReferenceBuilder/ReferenceBuilder.csproj index ca2ef80d..d2745382 100644 --- a/sandbox/ReferenceBuilder/ReferenceBuilder.csproj +++ b/sandbox/ReferenceBuilder/ReferenceBuilder.csproj @@ -5,7 +5,6 @@ net8.0 enable enable - false diff --git a/sandbox/WinFormsApp1/WinFormsApp1.csproj b/sandbox/WinFormsApp1/WinFormsApp1.csproj index c6854065..e6858805 100644 --- a/sandbox/WinFormsApp1/WinFormsApp1.csproj +++ b/sandbox/WinFormsApp1/WinFormsApp1.csproj @@ -7,7 +7,6 @@ true enable true - false diff --git a/sandbox/WinUI3App1/WinUI3App1.csproj b/sandbox/WinUI3App1/WinUI3App1.csproj index f3ca65f6..666914f0 100644 --- a/sandbox/WinUI3App1/WinUI3App1.csproj +++ b/sandbox/WinUI3App1/WinUI3App1.csproj @@ -11,7 +11,6 @@ true true true - false @@ -30,7 +29,7 @@ - diff --git a/sandbox/WpfApp1/WpfApp1.csproj b/sandbox/WpfApp1/WpfApp1.csproj index b2b3435a..72951cbc 100644 --- a/sandbox/WpfApp1/WpfApp1.csproj +++ b/sandbox/WpfApp1/WpfApp1.csproj @@ -7,7 +7,6 @@ enable true true - false diff --git a/src/R3.Avalonia/R3.Avalonia.csproj b/src/R3.Avalonia/R3.Avalonia.csproj index 1c4e3b03..3c329b3b 100644 --- a/src/R3.Avalonia/R3.Avalonia.csproj +++ b/src/R3.Avalonia/R3.Avalonia.csproj @@ -9,15 +9,12 @@ 1701;1702;1591;1573 + true R3Extensions.Avalonia rx Avalonia Provider and Methods for R3. - - - - diff --git a/src/R3.Blazor/R3.Blazor.csproj b/src/R3.Blazor/R3.Blazor.csproj index 7f7f8ffa..1f711015 100644 --- a/src/R3.Blazor/R3.Blazor.csproj +++ b/src/R3.Blazor/R3.Blazor.csproj @@ -11,14 +11,11 @@ R3 + true R3Extensions.Blazor rx Blazor Provider and Methods for R3. - true - - - diff --git a/src/R3.BlazorWebAssembly/R3.BlazorWebAssembly.csproj b/src/R3.BlazorWebAssembly/R3.BlazorWebAssembly.csproj index f43a749a..0f9aa740 100644 --- a/src/R3.BlazorWebAssembly/R3.BlazorWebAssembly.csproj +++ b/src/R3.BlazorWebAssembly/R3.BlazorWebAssembly.csproj @@ -11,14 +11,12 @@ R3 + true R3Extensions.BlazorWebAssembly rx BlazorWebAssembly Provider and Methods for R3. - true - - - + diff --git a/src/R3.Godot/R3.Godot.csproj b/src/R3.Godot/R3.Godot.csproj index 339bd60a..9f48fb47 100644 --- a/src/R3.Godot/R3.Godot.csproj +++ b/src/R3.Godot/R3.Godot.csproj @@ -5,7 +5,8 @@ disable enable 1701;1702;1591;1573;8002; - + + false diff --git a/src/R3.LogicLooper/R3.LogicLooper.csproj b/src/R3.LogicLooper/R3.LogicLooper.csproj index d2f72d25..5a7bff31 100644 --- a/src/R3.LogicLooper/R3.LogicLooper.csproj +++ b/src/R3.LogicLooper/R3.LogicLooper.csproj @@ -9,14 +9,12 @@ 1701;1702;1591;1573 + true R3Extensions.LogicLooper rx LogicLooper Provider and Methods for R3. - - - diff --git a/src/R3.Maui/R3.Maui.csproj b/src/R3.Maui/R3.Maui.csproj index 8bffd069..5e5edfbe 100644 --- a/src/R3.Maui/R3.Maui.csproj +++ b/src/R3.Maui/R3.Maui.csproj @@ -9,15 +9,12 @@ 1701;1702;1591;1573;CS8002 + true R3Extensions.Maui rx .NET MAUI Provider and Methods for R3. - - - - diff --git a/src/R3.MonoGame/R3.MonoGame.csproj b/src/R3.MonoGame/R3.MonoGame.csproj index a0ddf9be..844bedfa 100644 --- a/src/R3.MonoGame/R3.MonoGame.csproj +++ b/src/R3.MonoGame/R3.MonoGame.csproj @@ -9,15 +9,12 @@ 1701;1702;1591;1573;CS8002 + true R3Extensions.MonoGame rx MonoGame Provider and Methods for R3. - - - - All diff --git a/src/R3.Stride/R3.Stride.csproj b/src/R3.Stride/R3.Stride.csproj index 3bbf8e7f..91d76a71 100644 --- a/src/R3.Stride/R3.Stride.csproj +++ b/src/R3.Stride/R3.Stride.csproj @@ -5,6 +5,7 @@ enable + true R3Extensions.Stride rx Stride Provider and Methods for R3. @@ -15,7 +16,4 @@ - - - diff --git a/src/R3.Uno/R3.Uno.csproj b/src/R3.Uno/R3.Uno.csproj index 3e176a72..a65bb3cd 100644 --- a/src/R3.Uno/R3.Uno.csproj +++ b/src/R3.Uno/R3.Uno.csproj @@ -7,15 +7,12 @@ 1701;1702;CS8002 + true R3Extensions.Uno rx Uno Provider and Methods for R3. - - - - diff --git a/src/R3.WPF/R3.WPF.csproj b/src/R3.WPF/R3.WPF.csproj index 43d4331c..88fcac4c 100644 --- a/src/R3.WPF/R3.WPF.csproj +++ b/src/R3.WPF/R3.WPF.csproj @@ -12,15 +12,12 @@ 1701;1702;1591;1573 + true R3Extensions.WPF rx WPF Provider and Methods for R3. - - - - diff --git a/src/R3.WinForms/R3.WinForms.csproj b/src/R3.WinForms/R3.WinForms.csproj index 8ad03cc3..cd8ad02a 100644 --- a/src/R3.WinForms/R3.WinForms.csproj +++ b/src/R3.WinForms/R3.WinForms.csproj @@ -9,14 +9,12 @@ true + true R3Extensions.WinForms rx WinForms Provider and Methods for R3. - - - - + diff --git a/src/R3.WinUI3/R3.WinUI3.csproj b/src/R3.WinUI3/R3.WinUI3.csproj index f1fd88f0..f001808f 100644 --- a/src/R3.WinUI3/R3.WinUI3.csproj +++ b/src/R3.WinUI3/R3.WinUI3.csproj @@ -16,6 +16,7 @@ true + true R3Extensions.WinUI3 rx WinUI3 Provider and Methods for R3. @@ -29,9 +30,6 @@ - - - diff --git a/src/R3/R3.csproj b/src/R3/R3.csproj index 96442227..de028634 100644 --- a/src/R3/R3.csproj +++ b/src/R3/R3.csproj @@ -11,15 +11,11 @@ 1701;1702;1591;1573 + true rx The evolution of dotnet/reactive and UniRx. - - - - - all diff --git a/tests/R3.Tests/R3.Tests.csproj b/tests/R3.Tests/R3.Tests.csproj index bd598290..8dbc47ea 100644 --- a/tests/R3.Tests/R3.Tests.csproj +++ b/tests/R3.Tests/R3.Tests.csproj @@ -4,7 +4,6 @@ net9.0 enable enable - false 9113;xUnit1051