From 7e18ee04793047eb2427bfab980b2477b5eebdd4 Mon Sep 17 00:00:00 2001 From: Timothy Johnson Date: Mon, 6 Jan 2025 07:11:59 -0500 Subject: [PATCH] Move .sln file to top level --- .github/workflows/build.yml | 4 +- CONTRIBUTING.md | 2 +- ...ynamicDesktop.sln => WinDynamicDesktop.sln | 206 +++++++++--------- scripts/package.ps1 | 2 +- 4 files changed, 107 insertions(+), 107 deletions(-) rename src/WinDynamicDesktop.sln => WinDynamicDesktop.sln (94%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e9d9517..be99216 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: - run: scripts\version.ps1 - - run: dotnet restore src\WinDynamicDesktop.sln + - run: dotnet restore WinDynamicDesktop.sln - run: dotnet publish src\WinDynamicDesktop.csproj -a ${{ matrix.platform }} -c Release --no-restore --self-contained -p:EnableCompressionInSingleFile=$env:EnableCompressionInSingleFile -p:IncludeNativeLibrariesForSelfExtract=$env:IncludeNativeLibrariesForSelfExtract -p:PublishSingleFile=$env:PublishSingleFile env: @@ -70,7 +70,7 @@ jobs: - run: | cp .env.example .env - dotnet restore src\WinDynamicDesktop.sln + dotnet restore WinDynamicDesktop.sln - name: Unit Tests run: dotnet test --filter type!=system --verbosity normal diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3fd0418..ac6be36 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ Pull requests are welcome. For major changes, please [open an issue](https://git * `LOCATIONIQ_API_KEY` (optional) - [LocationIQ API key](https://help.locationiq.com/support/solutions/articles/36000172496-how-do-i-get-the-api-key-access-token-) used to get latitude and longitude based on city name * `POEDITOR_API_TOKEN` (optional) - [POEditor API token](https://poeditor.com/account/api) used to test new translations from the POEditor website -3. Open [the solution file](./src/WinDynamicDesktop.sln) in Visual Studio and build one of the projects: +3. Open [the solution file](./WinDynamicDesktop.sln) in Visual Studio and build one of the projects: * `WinDynamicDesktop` - Main project to run the app * `WinDynamicDesktop.Package` - UWP project for Microsoft Store app * `WinDynamicDesktop.Tests` - Unit tests diff --git a/src/WinDynamicDesktop.sln b/WinDynamicDesktop.sln similarity index 94% rename from src/WinDynamicDesktop.sln rename to WinDynamicDesktop.sln index be26900..c00250f 100644 --- a/src/WinDynamicDesktop.sln +++ b/WinDynamicDesktop.sln @@ -1,103 +1,103 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.0.32014.148 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WinDynamicDesktop", "WinDynamicDesktop.csproj", "{D752C033-AB46-423A-8611-E2E2A40CA80F}" -EndProject -Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "WinDynamicDesktop.Package", "..\uwp\WinDynamicDesktop.Package.wapproj", "{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinDynamicDesktop.Tests", "..\test\WinDynamicDesktop.Tests.csproj", "{36DDFE85-328C-4160-8C1C-21C33DC51453}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|ARM = Debug|ARM - Debug|ARM64 = Debug|ARM64 - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|ARM = Release|ARM - Release|ARM64 = Release|ARM64 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM.ActiveCfg = Debug|Any CPU - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM.Build.0 = Debug|Any CPU - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM64.ActiveCfg = Debug|Any CPU - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM64.Build.0 = Debug|Any CPU - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x64.ActiveCfg = Debug|x64 - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x64.Build.0 = Debug|x64 - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x86.ActiveCfg = Debug|x86 - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x86.Build.0 = Debug|x86 - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|Any CPU.Build.0 = Release|Any CPU - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM.ActiveCfg = Release|Any CPU - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM.Build.0 = Release|Any CPU - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM64.ActiveCfg = Release|Any CPU - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM64.Build.0 = Release|Any CPU - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x64.ActiveCfg = Release|x64 - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x64.Build.0 = Release|x64 - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x86.ActiveCfg = Release|x86 - {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x86.Build.0 = Release|x86 - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM.ActiveCfg = Debug|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM.Build.0 = Debug|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM.Deploy.0 = Debug|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM64.ActiveCfg = Debug|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM64.Build.0 = Debug|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM64.Deploy.0 = Debug|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x64.ActiveCfg = Debug|x64 - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x64.Build.0 = Debug|x64 - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x64.Deploy.0 = Debug|x64 - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x86.ActiveCfg = Debug|x86 - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x86.Build.0 = Debug|x86 - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x86.Deploy.0 = Debug|x86 - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|Any CPU.Build.0 = Release|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|Any CPU.Deploy.0 = Release|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM.ActiveCfg = Release|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM.Build.0 = Release|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM.Deploy.0 = Release|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM64.ActiveCfg = Release|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM64.Build.0 = Release|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM64.Deploy.0 = Release|Any CPU - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x64.ActiveCfg = Release|x64 - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x64.Build.0 = Release|x64 - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x64.Deploy.0 = Release|x64 - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x86.ActiveCfg = Release|x86 - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x86.Build.0 = Release|x86 - {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x86.Deploy.0 = Release|x86 - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|Any CPU.Build.0 = Debug|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM.ActiveCfg = Debug|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM.Build.0 = Debug|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM64.ActiveCfg = Debug|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM64.Build.0 = Debug|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x64.ActiveCfg = Debug|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x64.Build.0 = Debug|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x86.ActiveCfg = Debug|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x86.Build.0 = Debug|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|Any CPU.ActiveCfg = Release|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|Any CPU.Build.0 = Release|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM.ActiveCfg = Release|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM.Build.0 = Release|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM64.ActiveCfg = Release|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM64.Build.0 = Release|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x64.ActiveCfg = Release|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x64.Build.0 = Release|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x86.ActiveCfg = Release|Any CPU - {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {C134BA3F-F73D-4C16-8B2A-9511F3562E78} - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.32014.148 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WinDynamicDesktop", "src\WinDynamicDesktop.csproj", "{D752C033-AB46-423A-8611-E2E2A40CA80F}" +EndProject +Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "WinDynamicDesktop.Package", "uwp\WinDynamicDesktop.Package.wapproj", "{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinDynamicDesktop.Tests", "test\WinDynamicDesktop.Tests.csproj", "{36DDFE85-328C-4160-8C1C-21C33DC51453}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|ARM = Debug|ARM + Debug|ARM64 = Debug|ARM64 + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|ARM = Release|ARM + Release|ARM64 = Release|ARM64 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM.ActiveCfg = Debug|Any CPU + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM.Build.0 = Debug|Any CPU + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM64.ActiveCfg = Debug|Any CPU + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM64.Build.0 = Debug|Any CPU + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x64.ActiveCfg = Debug|x64 + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x64.Build.0 = Debug|x64 + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x86.ActiveCfg = Debug|x86 + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x86.Build.0 = Debug|x86 + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|Any CPU.Build.0 = Release|Any CPU + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM.ActiveCfg = Release|Any CPU + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM.Build.0 = Release|Any CPU + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM64.ActiveCfg = Release|Any CPU + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM64.Build.0 = Release|Any CPU + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x64.ActiveCfg = Release|x64 + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x64.Build.0 = Release|x64 + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x86.ActiveCfg = Release|x86 + {D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x86.Build.0 = Release|x86 + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM.ActiveCfg = Debug|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM.Build.0 = Debug|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM.Deploy.0 = Debug|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM64.ActiveCfg = Debug|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM64.Build.0 = Debug|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM64.Deploy.0 = Debug|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x64.ActiveCfg = Debug|x64 + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x64.Build.0 = Debug|x64 + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x64.Deploy.0 = Debug|x64 + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x86.ActiveCfg = Debug|x86 + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x86.Build.0 = Debug|x86 + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x86.Deploy.0 = Debug|x86 + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|Any CPU.Build.0 = Release|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|Any CPU.Deploy.0 = Release|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM.ActiveCfg = Release|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM.Build.0 = Release|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM.Deploy.0 = Release|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM64.ActiveCfg = Release|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM64.Build.0 = Release|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM64.Deploy.0 = Release|Any CPU + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x64.ActiveCfg = Release|x64 + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x64.Build.0 = Release|x64 + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x64.Deploy.0 = Release|x64 + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x86.ActiveCfg = Release|x86 + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x86.Build.0 = Release|x86 + {D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x86.Deploy.0 = Release|x86 + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|Any CPU.Build.0 = Debug|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM.ActiveCfg = Debug|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM.Build.0 = Debug|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM64.ActiveCfg = Debug|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM64.Build.0 = Debug|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x64.ActiveCfg = Debug|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x64.Build.0 = Debug|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x86.ActiveCfg = Debug|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x86.Build.0 = Debug|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|Any CPU.ActiveCfg = Release|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|Any CPU.Build.0 = Release|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM.ActiveCfg = Release|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM.Build.0 = Release|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM64.ActiveCfg = Release|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM64.Build.0 = Release|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x64.ActiveCfg = Release|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x64.Build.0 = Release|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x86.ActiveCfg = Release|Any CPU + {36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C134BA3F-F73D-4C16-8B2A-9511F3562E78} + EndGlobalSection +EndGlobal diff --git a/scripts/package.ps1 b/scripts/package.ps1 index 0b5005a..16ec443 100644 --- a/scripts/package.ps1 +++ b/scripts/package.ps1 @@ -11,7 +11,7 @@ $appVersion = ([Xml](Get-Content -Path "src\WinDynamicDesktop.csproj")).Project. Remove-Item "dist" -ErrorAction Ignore -Recurse New-Item -ItemType Directory -Force -Path "dist" -dotnet restore src\WinDynamicDesktop.sln +dotnet restore WinDynamicDesktop.sln foreach ($platform in $appPlatforms) { dotnet publish src\WinDynamicDesktop.csproj -a $platform -c Release --no-restore --self-contained -p:EnableCompressionInSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishSingleFile=true