From b03a3959ea952f7c967ea34544f4a1bf4fbd7ad9 Mon Sep 17 00:00:00 2001 From: Marton Balassa <7115274+BalassaMarton@users.noreply.github.com> Date: Mon, 2 Oct 2023 16:25:30 +0200 Subject: [PATCH] Enable Central Package Management for .NET projects --- Directory.Build.props | 6 +- Directory.Packages.props | 64 +++++++++++++++++++ .../ComposeUI.Example.DataService.csproj | 6 +- .../WPFDataGrid.TestApp.csproj | 10 +-- .../WPFDataGrid.csproj | 2 +- .../ModulesPrototype/ModulesPrototype.csproj | 4 +- ...organStanley.ComposeUI.ModuleLoader.csproj | 2 +- ...poseUI.ProcessExplorer.Abstractions.csproj | 16 ++--- ...ey.ComposeUI.ProcessExplorer.Client.csproj | 8 +-- ...nley.ComposeUI.ProcessExplorer.Core.csproj | 2 +- ...ey.ComposeUI.ProcessExplorer.Server.csproj | 6 +- ...poseUI.ProcessExplorer.Client.Tests.csproj | 12 ++-- ...omposeUI.ProcessExplorer.Core.Tests.csproj | 12 ++-- ...UI.ProcessExplorer.IntegrationTests.csproj | 12 ++-- ...poseUI.ProcessExplorer.Server.Tests.csproj | 12 ++-- src/Directory.Build.props | 3 - src/fdc3/Directory.Build.props | 3 - .../src/AppDirectory/AppDirectory.csproj | 22 +++---- .../AppDirectory.Tests.csproj | 18 +++--- .../dotnet/DesktopAgent/Directory.Build.props | 3 - .../src/DesktopAgent/DesktopAgent.csproj | 8 +-- .../src/DesktopAgent/Directory.Build.props | 3 - .../DesktopAgent/src/Directory.Build.props | 2 +- .../DesktopAgent.Tests.csproj | 16 ++--- src/fdc3/dotnet/Directory.Build.props | 3 - src/messaging/Directory.Build.props | 3 - src/messaging/dotnet/Directory.Build.props | 2 +- .../examples/TestServer/TestServer.csproj | 4 +- ...nStanley.ComposeUI.Messaging.Client.csproj | 16 ++--- ...ganStanley.ComposeUI.Messaging.Core.csproj | 8 +-- .../dotnet/src/Directory.Build.props | 2 +- ...nStanley.ComposeUI.Messaging.Server.csproj | 12 ++-- .../dotnet/test/Directory.Build.props | 20 +++--- ...omposeUI.Messaging.IntegrationTests.csproj | 4 +- ...ey.ComposeUI.Messaging.Server.Tests.csproj | 6 +- .../MorganStanley.ComposeUI.Testing.csproj | 2 +- src/shell/Directory.Build.props | 3 - src/shell/dotnet/Directory.Build.props | 3 - src/shell/dotnet/Shell/Shell.csproj | 8 +-- .../tests/Shell.Tests/Shell.Tests.csproj | 8 +-- 40 files changed, 200 insertions(+), 156 deletions(-) create mode 100644 Directory.Packages.props delete mode 100644 src/Directory.Build.props delete mode 100644 src/fdc3/Directory.Build.props delete mode 100644 src/fdc3/dotnet/DesktopAgent/Directory.Build.props delete mode 100644 src/fdc3/dotnet/DesktopAgent/src/DesktopAgent/Directory.Build.props delete mode 100644 src/fdc3/dotnet/Directory.Build.props delete mode 100644 src/messaging/Directory.Build.props delete mode 100644 src/shell/Directory.Build.props delete mode 100644 src/shell/dotnet/Directory.Build.props diff --git a/Directory.Build.props b/Directory.Build.props index a03f39ac3..98ce8b94e 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,5 +1,9 @@ - + + + + true + $(MSBuildThisFileDirectory.TrimEnd('/').TrimEnd('\')) diff --git a/Directory.Packages.props b/Directory.Packages.props new file mode 100644 index 000000000..f149ec33e --- /dev/null +++ b/Directory.Packages.props @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/prototypes/multi-module-prototype/examples/multi-module-example/ComposeUI.Example.DataService/ComposeUI.Example.DataService.csproj b/prototypes/multi-module-prototype/examples/multi-module-example/ComposeUI.Example.DataService/ComposeUI.Example.DataService.csproj index b2c2de081..c92fdc966 100644 --- a/prototypes/multi-module-prototype/examples/multi-module-example/ComposeUI.Example.DataService/ComposeUI.Example.DataService.csproj +++ b/prototypes/multi-module-prototype/examples/multi-module-example/ComposeUI.Example.DataService/ComposeUI.Example.DataService.csproj @@ -8,9 +8,9 @@ - - - + + + diff --git a/prototypes/multi-module-prototype/examples/multi-module-example/ComposeUI.Example.WPFDataGrid.TestApp/WPFDataGrid.TestApp.csproj b/prototypes/multi-module-prototype/examples/multi-module-example/ComposeUI.Example.WPFDataGrid.TestApp/WPFDataGrid.TestApp.csproj index 9ae29ac1d..8979f73a9 100644 --- a/prototypes/multi-module-prototype/examples/multi-module-example/ComposeUI.Example.WPFDataGrid.TestApp/WPFDataGrid.TestApp.csproj +++ b/prototypes/multi-module-prototype/examples/multi-module-example/ComposeUI.Example.WPFDataGrid.TestApp/WPFDataGrid.TestApp.csproj @@ -8,11 +8,11 @@ - - - - - + + + + + diff --git a/prototypes/multi-module-prototype/examples/multi-module-example/ComposeUI.Example.WPFDataGrid/WPFDataGrid.csproj b/prototypes/multi-module-prototype/examples/multi-module-example/ComposeUI.Example.WPFDataGrid/WPFDataGrid.csproj index ba2d28f7d..3f0107425 100644 --- a/prototypes/multi-module-prototype/examples/multi-module-example/ComposeUI.Example.WPFDataGrid/WPFDataGrid.csproj +++ b/prototypes/multi-module-prototype/examples/multi-module-example/ComposeUI.Example.WPFDataGrid/WPFDataGrid.csproj @@ -13,7 +13,7 @@ - + diff --git a/prototypes/multi-module-prototype/examples/multi-module-example/ModulesPrototype/ModulesPrototype.csproj b/prototypes/multi-module-prototype/examples/multi-module-example/ModulesPrototype/ModulesPrototype.csproj index 0b2426e0e..6314ef4b2 100644 --- a/prototypes/multi-module-prototype/examples/multi-module-example/ModulesPrototype/ModulesPrototype.csproj +++ b/prototypes/multi-module-prototype/examples/multi-module-example/ModulesPrototype/ModulesPrototype.csproj @@ -36,8 +36,8 @@ Microsoft Visual Studio Solution File, Format Version 12.00 - - + + diff --git a/prototypes/multi-module-prototype/src/module-loader/dotnet/ModuleLoader/MorganStanley.ComposeUI.ModuleLoader.csproj b/prototypes/multi-module-prototype/src/module-loader/dotnet/ModuleLoader/MorganStanley.ComposeUI.ModuleLoader.csproj index ea34b292f..51af9c24c 100644 --- a/prototypes/multi-module-prototype/src/module-loader/dotnet/ModuleLoader/MorganStanley.ComposeUI.ModuleLoader.csproj +++ b/prototypes/multi-module-prototype/src/module-loader/dotnet/ModuleLoader/MorganStanley.ComposeUI.ModuleLoader.csproj @@ -35,6 +35,6 @@ See the License for the specific language governing permissions and limitations - + \ No newline at end of file diff --git a/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Abstractions/MorganStanley.ComposeUI.ProcessExplorer.Abstractions.csproj b/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Abstractions/MorganStanley.ComposeUI.ProcessExplorer.Abstractions.csproj index 328a25f60..f71c95634 100644 --- a/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Abstractions/MorganStanley.ComposeUI.ProcessExplorer.Abstractions.csproj +++ b/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Abstractions/MorganStanley.ComposeUI.ProcessExplorer.Abstractions.csproj @@ -19,17 +19,17 @@ - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - + + + + + diff --git a/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Client/MorganStanley.ComposeUI.ProcessExplorer.Client.csproj b/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Client/MorganStanley.ComposeUI.ProcessExplorer.Client.csproj index e0596c629..428e5cb15 100644 --- a/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Client/MorganStanley.ComposeUI.ProcessExplorer.Client.csproj +++ b/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Client/MorganStanley.ComposeUI.ProcessExplorer.Client.csproj @@ -8,10 +8,10 @@ - - - - + + + + diff --git a/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Core/MorganStanley.ComposeUI.ProcessExplorer.Core.csproj b/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Core/MorganStanley.ComposeUI.ProcessExplorer.Core.csproj index c7f5bf75f..e91375d3c 100644 --- a/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Core/MorganStanley.ComposeUI.ProcessExplorer.Core.csproj +++ b/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Core/MorganStanley.ComposeUI.ProcessExplorer.Core.csproj @@ -12,7 +12,7 @@ - + diff --git a/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Server/MorganStanley.ComposeUI.ProcessExplorer.Server.csproj b/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Server/MorganStanley.ComposeUI.ProcessExplorer.Server.csproj index 690d1a580..f0605d88a 100644 --- a/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Server/MorganStanley.ComposeUI.ProcessExplorer.Server.csproj +++ b/prototypes/process-explorer/dotnet/src/MorganStanley.ComposeUI.ProcessExplorer.Server/MorganStanley.ComposeUI.ProcessExplorer.Server.csproj @@ -8,9 +8,9 @@ - - - + + + diff --git a/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Client.Tests/MorganStanley.ComposeUI.ProcessExplorer.Client.Tests.csproj b/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Client.Tests/MorganStanley.ComposeUI.ProcessExplorer.Client.Tests.csproj index 4c6a423c4..24c7b73b9 100644 --- a/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Client.Tests/MorganStanley.ComposeUI.ProcessExplorer.Client.Tests.csproj +++ b/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Client.Tests/MorganStanley.ComposeUI.ProcessExplorer.Client.Tests.csproj @@ -7,18 +7,18 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Core.Tests/MorganStanley.ComposeUI.ProcessExplorer.Core.Tests.csproj b/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Core.Tests/MorganStanley.ComposeUI.ProcessExplorer.Core.Tests.csproj index 93e31e978..f5a92e2b1 100644 --- a/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Core.Tests/MorganStanley.ComposeUI.ProcessExplorer.Core.Tests.csproj +++ b/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Core.Tests/MorganStanley.ComposeUI.ProcessExplorer.Core.Tests.csproj @@ -7,18 +7,18 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.IntegrationTests/MorganStanley.ComposeUI.ProcessExplorer.IntegrationTests.csproj b/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.IntegrationTests/MorganStanley.ComposeUI.ProcessExplorer.IntegrationTests.csproj index 15d399dd0..b6d1c5fcd 100644 --- a/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.IntegrationTests/MorganStanley.ComposeUI.ProcessExplorer.IntegrationTests.csproj +++ b/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.IntegrationTests/MorganStanley.ComposeUI.ProcessExplorer.IntegrationTests.csproj @@ -7,18 +7,18 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Server.Tests/MorganStanley.ComposeUI.ProcessExplorer.Server.Tests.csproj b/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Server.Tests/MorganStanley.ComposeUI.ProcessExplorer.Server.Tests.csproj index dbaebe09b..a962a8d12 100644 --- a/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Server.Tests/MorganStanley.ComposeUI.ProcessExplorer.Server.Tests.csproj +++ b/prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Server.Tests/MorganStanley.ComposeUI.ProcessExplorer.Server.Tests.csproj @@ -9,15 +9,15 @@ - - - - - + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/Directory.Build.props b/src/Directory.Build.props deleted file mode 100644 index c9e0df096..000000000 --- a/src/Directory.Build.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/fdc3/Directory.Build.props b/src/fdc3/Directory.Build.props deleted file mode 100644 index 696567f41..000000000 --- a/src/fdc3/Directory.Build.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/fdc3/dotnet/AppDirectory/src/AppDirectory/AppDirectory.csproj b/src/fdc3/dotnet/AppDirectory/src/AppDirectory/AppDirectory.csproj index b159cded0..4c8c0b138 100644 --- a/src/fdc3/dotnet/AppDirectory/src/AppDirectory/AppDirectory.csproj +++ b/src/fdc3/dotnet/AppDirectory/src/AppDirectory/AppDirectory.csproj @@ -9,20 +9,20 @@ - - - - - - - - + + + + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - + + + diff --git a/src/fdc3/dotnet/AppDirectory/test/AppDirectory.Tests/AppDirectory.Tests.csproj b/src/fdc3/dotnet/AppDirectory/test/AppDirectory.Tests/AppDirectory.Tests.csproj index 8eb3f9cb5..451ba818f 100644 --- a/src/fdc3/dotnet/AppDirectory/test/AppDirectory.Tests/AppDirectory.Tests.csproj +++ b/src/fdc3/dotnet/AppDirectory/test/AppDirectory.Tests/AppDirectory.Tests.csproj @@ -11,21 +11,21 @@ - - - - - - - + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + diff --git a/src/fdc3/dotnet/DesktopAgent/Directory.Build.props b/src/fdc3/dotnet/DesktopAgent/Directory.Build.props deleted file mode 100644 index 696567f41..000000000 --- a/src/fdc3/dotnet/DesktopAgent/Directory.Build.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/fdc3/dotnet/DesktopAgent/src/DesktopAgent/DesktopAgent.csproj b/src/fdc3/dotnet/DesktopAgent/src/DesktopAgent/DesktopAgent.csproj index dc7678378..41e8f5552 100644 --- a/src/fdc3/dotnet/DesktopAgent/src/DesktopAgent/DesktopAgent.csproj +++ b/src/fdc3/dotnet/DesktopAgent/src/DesktopAgent/DesktopAgent.csproj @@ -8,10 +8,10 @@ - - - - + + + + diff --git a/src/fdc3/dotnet/DesktopAgent/src/DesktopAgent/Directory.Build.props b/src/fdc3/dotnet/DesktopAgent/src/DesktopAgent/Directory.Build.props deleted file mode 100644 index 696567f41..000000000 --- a/src/fdc3/dotnet/DesktopAgent/src/DesktopAgent/Directory.Build.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/fdc3/dotnet/DesktopAgent/src/Directory.Build.props b/src/fdc3/dotnet/DesktopAgent/src/Directory.Build.props index 01070a719..2e6914347 100644 --- a/src/fdc3/dotnet/DesktopAgent/src/Directory.Build.props +++ b/src/fdc3/dotnet/DesktopAgent/src/Directory.Build.props @@ -1,5 +1,5 @@ - + diff --git a/src/fdc3/dotnet/DesktopAgent/tests/DesktopAgent.Tests/DesktopAgent.Tests.csproj b/src/fdc3/dotnet/DesktopAgent/tests/DesktopAgent.Tests/DesktopAgent.Tests.csproj index 155f52e34..544a5afa3 100644 --- a/src/fdc3/dotnet/DesktopAgent/tests/DesktopAgent.Tests/DesktopAgent.Tests.csproj +++ b/src/fdc3/dotnet/DesktopAgent/tests/DesktopAgent.Tests/DesktopAgent.Tests.csproj @@ -13,17 +13,17 @@ - - - - - - - + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/fdc3/dotnet/Directory.Build.props b/src/fdc3/dotnet/Directory.Build.props deleted file mode 100644 index 696567f41..000000000 --- a/src/fdc3/dotnet/Directory.Build.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/messaging/Directory.Build.props b/src/messaging/Directory.Build.props deleted file mode 100644 index 696567f41..000000000 --- a/src/messaging/Directory.Build.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/messaging/dotnet/Directory.Build.props b/src/messaging/dotnet/Directory.Build.props index e41bea3ac..6fc29afe0 100644 --- a/src/messaging/dotnet/Directory.Build.props +++ b/src/messaging/dotnet/Directory.Build.props @@ -1,5 +1,5 @@ - + enable diff --git a/src/messaging/dotnet/examples/TestServer/TestServer.csproj b/src/messaging/dotnet/examples/TestServer/TestServer.csproj index 2442cd866..6bcb9a413 100644 --- a/src/messaging/dotnet/examples/TestServer/TestServer.csproj +++ b/src/messaging/dotnet/examples/TestServer/TestServer.csproj @@ -8,8 +8,8 @@ - - + + diff --git a/src/messaging/dotnet/src/Client/MorganStanley.ComposeUI.Messaging.Client.csproj b/src/messaging/dotnet/src/Client/MorganStanley.ComposeUI.Messaging.Client.csproj index eeff40934..7e972019c 100644 --- a/src/messaging/dotnet/src/Client/MorganStanley.ComposeUI.Messaging.Client.csproj +++ b/src/messaging/dotnet/src/Client/MorganStanley.ComposeUI.Messaging.Client.csproj @@ -12,14 +12,14 @@ - - - - - - - - + + + + + + + + diff --git a/src/messaging/dotnet/src/Core/MorganStanley.ComposeUI.Messaging.Core.csproj b/src/messaging/dotnet/src/Core/MorganStanley.ComposeUI.Messaging.Core.csproj index 813d8d08d..a42396d9c 100644 --- a/src/messaging/dotnet/src/Core/MorganStanley.ComposeUI.Messaging.Core.csproj +++ b/src/messaging/dotnet/src/Core/MorganStanley.ComposeUI.Messaging.Core.csproj @@ -14,10 +14,10 @@ - - - - + + + + diff --git a/src/messaging/dotnet/src/Directory.Build.props b/src/messaging/dotnet/src/Directory.Build.props index deeae590c..656bb4a76 100644 --- a/src/messaging/dotnet/src/Directory.Build.props +++ b/src/messaging/dotnet/src/Directory.Build.props @@ -1,5 +1,5 @@ - + diff --git a/src/messaging/dotnet/src/Server/MorganStanley.ComposeUI.Messaging.Server.csproj b/src/messaging/dotnet/src/Server/MorganStanley.ComposeUI.Messaging.Server.csproj index a93f3073f..d4f814066 100644 --- a/src/messaging/dotnet/src/Server/MorganStanley.ComposeUI.Messaging.Server.csproj +++ b/src/messaging/dotnet/src/Server/MorganStanley.ComposeUI.Messaging.Server.csproj @@ -8,12 +8,12 @@ - - - - - - + + + + + + diff --git a/src/messaging/dotnet/test/Directory.Build.props b/src/messaging/dotnet/test/Directory.Build.props index a181999ba..735b0d360 100644 --- a/src/messaging/dotnet/test/Directory.Build.props +++ b/src/messaging/dotnet/test/Directory.Build.props @@ -1,21 +1,21 @@ - + - - - - - - + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + \ No newline at end of file diff --git a/src/messaging/dotnet/test/IntegrationTests/MorganStanley.ComposeUI.Messaging.IntegrationTests.csproj b/src/messaging/dotnet/test/IntegrationTests/MorganStanley.ComposeUI.Messaging.IntegrationTests.csproj index 633b7721a..9230cba71 100644 --- a/src/messaging/dotnet/test/IntegrationTests/MorganStanley.ComposeUI.Messaging.IntegrationTests.csproj +++ b/src/messaging/dotnet/test/IntegrationTests/MorganStanley.ComposeUI.Messaging.IntegrationTests.csproj @@ -7,8 +7,8 @@ - - + + diff --git a/src/messaging/dotnet/test/Server.Tests/MorganStanley.ComposeUI.Messaging.Server.Tests.csproj b/src/messaging/dotnet/test/Server.Tests/MorganStanley.ComposeUI.Messaging.Server.Tests.csproj index 8d3f4d6e9..a689ae382 100644 --- a/src/messaging/dotnet/test/Server.Tests/MorganStanley.ComposeUI.Messaging.Server.Tests.csproj +++ b/src/messaging/dotnet/test/Server.Tests/MorganStanley.ComposeUI.Messaging.Server.Tests.csproj @@ -7,9 +7,9 @@ - - - + + + diff --git a/src/shared/dotnet/MorganStanley.ComposeUI.Testing/MorganStanley.ComposeUI.Testing.csproj b/src/shared/dotnet/MorganStanley.ComposeUI.Testing/MorganStanley.ComposeUI.Testing.csproj index 2f473efc3..bde7239fc 100644 --- a/src/shared/dotnet/MorganStanley.ComposeUI.Testing/MorganStanley.ComposeUI.Testing.csproj +++ b/src/shared/dotnet/MorganStanley.ComposeUI.Testing/MorganStanley.ComposeUI.Testing.csproj @@ -7,7 +7,7 @@ - + diff --git a/src/shell/Directory.Build.props b/src/shell/Directory.Build.props deleted file mode 100644 index 696567f41..000000000 --- a/src/shell/Directory.Build.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/shell/dotnet/Directory.Build.props b/src/shell/dotnet/Directory.Build.props deleted file mode 100644 index 696567f41..000000000 --- a/src/shell/dotnet/Directory.Build.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/shell/dotnet/Shell/Shell.csproj b/src/shell/dotnet/Shell/Shell.csproj index 7cd60f1ce..d5896fd27 100644 --- a/src/shell/dotnet/Shell/Shell.csproj +++ b/src/shell/dotnet/Shell/Shell.csproj @@ -17,10 +17,10 @@ - - - - + + + + diff --git a/src/shell/dotnet/tests/Shell.Tests/Shell.Tests.csproj b/src/shell/dotnet/tests/Shell.Tests/Shell.Tests.csproj index 9040b6d25..7f94cb03a 100644 --- a/src/shell/dotnet/tests/Shell.Tests/Shell.Tests.csproj +++ b/src/shell/dotnet/tests/Shell.Tests/Shell.Tests.csproj @@ -9,13 +9,13 @@ - - - + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all