Skip to content

Commit 7e18ee0

Browse files
committed
Move .sln file to top level
1 parent c27e15b commit 7e18ee0

File tree

4 files changed

+107
-107
lines changed

4 files changed

+107
-107
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- run: scripts\version.ps1
3232

33-
- run: dotnet restore src\WinDynamicDesktop.sln
33+
- run: dotnet restore WinDynamicDesktop.sln
3434

3535
- 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
3636
env:
@@ -70,7 +70,7 @@ jobs:
7070

7171
- run: |
7272
cp .env.example .env
73-
dotnet restore src\WinDynamicDesktop.sln
73+
dotnet restore WinDynamicDesktop.sln
7474
7575
- name: Unit Tests
7676
run: dotnet test --filter type!=system --verbosity normal

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Pull requests are welcome. For major changes, please [open an issue](https://git
1212
* `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
1313
* `POEDITOR_API_TOKEN` (optional) - [POEditor API token](https://poeditor.com/account/api) used to test new translations from the POEditor website
1414

15-
3. Open [the solution file](./src/WinDynamicDesktop.sln) in Visual Studio and build one of the projects:
15+
3. Open [the solution file](./WinDynamicDesktop.sln) in Visual Studio and build one of the projects:
1616
* `WinDynamicDesktop` - Main project to run the app
1717
* `WinDynamicDesktop.Package` - UWP project for Microsoft Store app
1818
* `WinDynamicDesktop.Tests` - Unit tests
Lines changed: 103 additions & 103 deletions
Original file line numberDiff line numberDiff line change
@@ -1,103 +1,103 @@
1-
2-
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 17
4-
VisualStudioVersion = 17.0.32014.148
5-
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WinDynamicDesktop", "WinDynamicDesktop.csproj", "{D752C033-AB46-423A-8611-E2E2A40CA80F}"
7-
EndProject
8-
Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "WinDynamicDesktop.Package", "..\uwp\WinDynamicDesktop.Package.wapproj", "{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}"
9-
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinDynamicDesktop.Tests", "..\test\WinDynamicDesktop.Tests.csproj", "{36DDFE85-328C-4160-8C1C-21C33DC51453}"
11-
EndProject
12-
Global
13-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14-
Debug|Any CPU = Debug|Any CPU
15-
Debug|ARM = Debug|ARM
16-
Debug|ARM64 = Debug|ARM64
17-
Debug|x64 = Debug|x64
18-
Debug|x86 = Debug|x86
19-
Release|Any CPU = Release|Any CPU
20-
Release|ARM = Release|ARM
21-
Release|ARM64 = Release|ARM64
22-
Release|x64 = Release|x64
23-
Release|x86 = Release|x86
24-
EndGlobalSection
25-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
26-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|Any CPU.Build.0 = Debug|Any CPU
28-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM.ActiveCfg = Debug|Any CPU
29-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM.Build.0 = Debug|Any CPU
30-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM64.ActiveCfg = Debug|Any CPU
31-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM64.Build.0 = Debug|Any CPU
32-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x64.ActiveCfg = Debug|x64
33-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x64.Build.0 = Debug|x64
34-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x86.ActiveCfg = Debug|x86
35-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x86.Build.0 = Debug|x86
36-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|Any CPU.ActiveCfg = Release|Any CPU
37-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|Any CPU.Build.0 = Release|Any CPU
38-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM.ActiveCfg = Release|Any CPU
39-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM.Build.0 = Release|Any CPU
40-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM64.ActiveCfg = Release|Any CPU
41-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM64.Build.0 = Release|Any CPU
42-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x64.ActiveCfg = Release|x64
43-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x64.Build.0 = Release|x64
44-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x86.ActiveCfg = Release|x86
45-
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x86.Build.0 = Release|x86
46-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
47-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|Any CPU.Build.0 = Debug|Any CPU
48-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
49-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM.ActiveCfg = Debug|Any CPU
50-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM.Build.0 = Debug|Any CPU
51-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM.Deploy.0 = Debug|Any CPU
52-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM64.ActiveCfg = Debug|Any CPU
53-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM64.Build.0 = Debug|Any CPU
54-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM64.Deploy.0 = Debug|Any CPU
55-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x64.ActiveCfg = Debug|x64
56-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x64.Build.0 = Debug|x64
57-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x64.Deploy.0 = Debug|x64
58-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x86.ActiveCfg = Debug|x86
59-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x86.Build.0 = Debug|x86
60-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x86.Deploy.0 = Debug|x86
61-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|Any CPU.ActiveCfg = Release|Any CPU
62-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|Any CPU.Build.0 = Release|Any CPU
63-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|Any CPU.Deploy.0 = Release|Any CPU
64-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM.ActiveCfg = Release|Any CPU
65-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM.Build.0 = Release|Any CPU
66-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM.Deploy.0 = Release|Any CPU
67-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM64.ActiveCfg = Release|Any CPU
68-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM64.Build.0 = Release|Any CPU
69-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM64.Deploy.0 = Release|Any CPU
70-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x64.ActiveCfg = Release|x64
71-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x64.Build.0 = Release|x64
72-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x64.Deploy.0 = Release|x64
73-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x86.ActiveCfg = Release|x86
74-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x86.Build.0 = Release|x86
75-
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x86.Deploy.0 = Release|x86
76-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
77-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|Any CPU.Build.0 = Debug|Any CPU
78-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM.ActiveCfg = Debug|Any CPU
79-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM.Build.0 = Debug|Any CPU
80-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM64.ActiveCfg = Debug|Any CPU
81-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM64.Build.0 = Debug|Any CPU
82-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x64.ActiveCfg = Debug|Any CPU
83-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x64.Build.0 = Debug|Any CPU
84-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x86.ActiveCfg = Debug|Any CPU
85-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x86.Build.0 = Debug|Any CPU
86-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|Any CPU.ActiveCfg = Release|Any CPU
87-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|Any CPU.Build.0 = Release|Any CPU
88-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM.ActiveCfg = Release|Any CPU
89-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM.Build.0 = Release|Any CPU
90-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM64.ActiveCfg = Release|Any CPU
91-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM64.Build.0 = Release|Any CPU
92-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x64.ActiveCfg = Release|Any CPU
93-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x64.Build.0 = Release|Any CPU
94-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x86.ActiveCfg = Release|Any CPU
95-
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x86.Build.0 = Release|Any CPU
96-
EndGlobalSection
97-
GlobalSection(SolutionProperties) = preSolution
98-
HideSolutionNode = FALSE
99-
EndGlobalSection
100-
GlobalSection(ExtensibilityGlobals) = postSolution
101-
SolutionGuid = {C134BA3F-F73D-4C16-8B2A-9511F3562E78}
102-
EndGlobalSection
103-
EndGlobal
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.32014.148
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WinDynamicDesktop", "src\WinDynamicDesktop.csproj", "{D752C033-AB46-423A-8611-E2E2A40CA80F}"
7+
EndProject
8+
Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "WinDynamicDesktop.Package", "uwp\WinDynamicDesktop.Package.wapproj", "{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinDynamicDesktop.Tests", "test\WinDynamicDesktop.Tests.csproj", "{36DDFE85-328C-4160-8C1C-21C33DC51453}"
11+
EndProject
12+
Global
13+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14+
Debug|Any CPU = Debug|Any CPU
15+
Debug|ARM = Debug|ARM
16+
Debug|ARM64 = Debug|ARM64
17+
Debug|x64 = Debug|x64
18+
Debug|x86 = Debug|x86
19+
Release|Any CPU = Release|Any CPU
20+
Release|ARM = Release|ARM
21+
Release|ARM64 = Release|ARM64
22+
Release|x64 = Release|x64
23+
Release|x86 = Release|x86
24+
EndGlobalSection
25+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
26+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM.ActiveCfg = Debug|Any CPU
29+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM.Build.0 = Debug|Any CPU
30+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM64.ActiveCfg = Debug|Any CPU
31+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|ARM64.Build.0 = Debug|Any CPU
32+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x64.ActiveCfg = Debug|x64
33+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x64.Build.0 = Debug|x64
34+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x86.ActiveCfg = Debug|x86
35+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Debug|x86.Build.0 = Debug|x86
36+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|Any CPU.ActiveCfg = Release|Any CPU
37+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|Any CPU.Build.0 = Release|Any CPU
38+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM.ActiveCfg = Release|Any CPU
39+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM.Build.0 = Release|Any CPU
40+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM64.ActiveCfg = Release|Any CPU
41+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|ARM64.Build.0 = Release|Any CPU
42+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x64.ActiveCfg = Release|x64
43+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x64.Build.0 = Release|x64
44+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x86.ActiveCfg = Release|x86
45+
{D752C033-AB46-423A-8611-E2E2A40CA80F}.Release|x86.Build.0 = Release|x86
46+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
47+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|Any CPU.Build.0 = Debug|Any CPU
48+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
49+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM.ActiveCfg = Debug|Any CPU
50+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM.Build.0 = Debug|Any CPU
51+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM.Deploy.0 = Debug|Any CPU
52+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM64.ActiveCfg = Debug|Any CPU
53+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM64.Build.0 = Debug|Any CPU
54+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|ARM64.Deploy.0 = Debug|Any CPU
55+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x64.ActiveCfg = Debug|x64
56+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x64.Build.0 = Debug|x64
57+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x64.Deploy.0 = Debug|x64
58+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x86.ActiveCfg = Debug|x86
59+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x86.Build.0 = Debug|x86
60+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Debug|x86.Deploy.0 = Debug|x86
61+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|Any CPU.ActiveCfg = Release|Any CPU
62+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|Any CPU.Build.0 = Release|Any CPU
63+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|Any CPU.Deploy.0 = Release|Any CPU
64+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM.ActiveCfg = Release|Any CPU
65+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM.Build.0 = Release|Any CPU
66+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM.Deploy.0 = Release|Any CPU
67+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM64.ActiveCfg = Release|Any CPU
68+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM64.Build.0 = Release|Any CPU
69+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|ARM64.Deploy.0 = Release|Any CPU
70+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x64.ActiveCfg = Release|x64
71+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x64.Build.0 = Release|x64
72+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x64.Deploy.0 = Release|x64
73+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x86.ActiveCfg = Release|x86
74+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x86.Build.0 = Release|x86
75+
{D10BBBDF-EFCF-4051-9BFD-9B0AFCD30EE4}.Release|x86.Deploy.0 = Release|x86
76+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
77+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|Any CPU.Build.0 = Debug|Any CPU
78+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM.ActiveCfg = Debug|Any CPU
79+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM.Build.0 = Debug|Any CPU
80+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM64.ActiveCfg = Debug|Any CPU
81+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|ARM64.Build.0 = Debug|Any CPU
82+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x64.ActiveCfg = Debug|Any CPU
83+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x64.Build.0 = Debug|Any CPU
84+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x86.ActiveCfg = Debug|Any CPU
85+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Debug|x86.Build.0 = Debug|Any CPU
86+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|Any CPU.ActiveCfg = Release|Any CPU
87+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|Any CPU.Build.0 = Release|Any CPU
88+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM.ActiveCfg = Release|Any CPU
89+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM.Build.0 = Release|Any CPU
90+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM64.ActiveCfg = Release|Any CPU
91+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|ARM64.Build.0 = Release|Any CPU
92+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x64.ActiveCfg = Release|Any CPU
93+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x64.Build.0 = Release|Any CPU
94+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x86.ActiveCfg = Release|Any CPU
95+
{36DDFE85-328C-4160-8C1C-21C33DC51453}.Release|x86.Build.0 = Release|Any CPU
96+
EndGlobalSection
97+
GlobalSection(SolutionProperties) = preSolution
98+
HideSolutionNode = FALSE
99+
EndGlobalSection
100+
GlobalSection(ExtensibilityGlobals) = postSolution
101+
SolutionGuid = {C134BA3F-F73D-4C16-8B2A-9511F3562E78}
102+
EndGlobalSection
103+
EndGlobal

scripts/package.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $appVersion = ([Xml](Get-Content -Path "src\WinDynamicDesktop.csproj")).Project.
1111
Remove-Item "dist" -ErrorAction Ignore -Recurse
1212
New-Item -ItemType Directory -Force -Path "dist"
1313

14-
dotnet restore src\WinDynamicDesktop.sln
14+
dotnet restore WinDynamicDesktop.sln
1515

1616
foreach ($platform in $appPlatforms) {
1717
dotnet publish src\WinDynamicDesktop.csproj -a $platform -c Release --no-restore --self-contained -p:EnableCompressionInSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishSingleFile=true

0 commit comments

Comments
 (0)