Skip to content

Commit 56ca92d

Browse files
committed
Rename directory to reflect expanded contents
1 parent 766e090 commit 56ca92d

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

src/AppInstallerCLICore/ConfigurationSetProcessorFactoryRemoting.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace AppInstaller::CLI::ConfigurationRemoting
2020
namespace
2121
{
2222
// The executable file name for the remote server process.
23-
constexpr std::wstring_view s_RemoteServerFileName = L"ConfigurationRemotingServer\\ConfigurationRemotingServer.exe"sv;
23+
constexpr std::wstring_view s_RemoteServerFileName = L"DotNet\\ConfigurationRemotingServer.exe"sv;
2424

2525
constexpr std::wstring_view s_ProcessorEngine_PowerShell = L"pwsh"sv;
2626
constexpr std::wstring_view s_ProcessorEngine_DSCv3 = L"dscv3"sv;

src/AppInstallerCLIPackage/AppInstallerCLIPackage.wapproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@
227227
<Target Name="WinGetIncludeAdditionalFilesInPackage" AfterTargets="_ComputeAppxPackagePayload">
228228
<PropertyGroup>
229229
<WinGetAdditionalPackageFileRoot>$(SolutionDir)</WinGetAdditionalPackageFileRoot>
230+
<WinGetDotNetDirectoryName>DotNet</WinGetDotNetDirectoryName>
230231
</PropertyGroup>
231232
<Message Importance="normal" Text="WinGetAdditionalPackageFileRoot = $(WinGetAdditionalPackageFileRoot)" />
232233
<ItemGroup>
@@ -243,11 +244,11 @@
243244
<PackagePath>Microsoft.Management.Configuration.winmd</PackagePath>
244245
</WinGetAdditionalPackageFile>
245246
<WinGetAdditionalPackageFile Include="$(WinGetAdditionalPackageFileRoot)\$(PlatformTarget)\$(Configuration)\ConfigurationRemotingServer\net8.0-windows10.0.26100.0\$(ConfigServerRid)\**\*">
246-
<PackagePath>ConfigurationRemotingServer</PackagePath>
247+
<PackagePath>$(WinGetDotNetDirectoryName)</PackagePath>
247248
<Recurse>true</Recurse>
248249
</WinGetAdditionalPackageFile>
249250
<WinGetAdditionalPackageFile Include="$(WinGetAdditionalPackageFileRoot)\$(PlatformTarget)\$(Configuration)\Microsoft.Management.Deployment.OutOfProc\Microsoft.Management.Deployment.OutOfProc.dll">
250-
<PackagePath>ConfigurationRemotingServer\Microsoft.Management.Deployment.dll</PackagePath>
251+
<PackagePath>$(WinGetDotNetDirectoryName)\Microsoft.Management.Deployment.dll</PackagePath>
251252
</WinGetAdditionalPackageFile>
252253
<WinGetAdditionalPackageFile Include="$(SolutionDir)\PowerShell\ExternalModules\**\*">
253254
<PackagePath>ExternalModules</PackagePath>

src/AppInstallerCLIPackage/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
</com:Extension>
9898
</Extensions>
9999
</Application>
100-
<Application Id="WinGetMCPServer" Executable="ConfigurationRemotingServer\WinGetMCPServer.exe" EntryPoint="Windows.FullTrustApplication">
100+
<Application Id="WinGetMCPServer" Executable="DotNet\WinGetMCPServer.exe" EntryPoint="Windows.FullTrustApplication">
101101
<uap:VisualElements DisplayName="WinGet Dev MCP Server" Square150x150Logo="Images\MedTile.png" Square44x44Logo="Images\AppList.png" Description="The WinGet MCP server." BackgroundColor="#0078d7" AppListEntry="none" >
102102
<uap:DefaultTile/>
103103
</uap:VisualElements >

src/AppInstallerCommonCore/SelfManagement.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace AppInstaller::SelfManagement
1515

1616
// Always use AppInstaller's package family name for wingetdev
1717
static constexpr std::wstring_view s_AppInstallerPfn = L"Microsoft.DesktopAppInstaller_8wekyb3d8bbwe"sv;
18-
constexpr std::wstring_view s_RemoteServerFileName = L"ConfigurationRemotingServer\\ConfigurationRemotingServer.exe";
18+
constexpr std::wstring_view s_RemoteServerFileName = L"DotNet\\ConfigurationRemotingServer.exe";
1919

2020
bool IsStubPreferred()
2121
{

0 commit comments

Comments
 (0)