diff --git a/VdLabel.Wix/Program.cs b/VdLabel.Wix/Program.cs index 752d434..1321b10 100644 --- a/VdLabel.Wix/Program.cs +++ b/VdLabel.Wix/Program.cs @@ -13,7 +13,7 @@ var version = info.FileVersion; var project = new ManagedProject(App, - new Dir(@$"%LocalAppData%\StudioFreesia\{App}", + new Dir(@$"%ProgramFiles%\StudioFreesia\{App}", new File(exePath) { AddCloseAction = true }, new Files(Path.Combine(ArtifactsDir, "*.*"), p => !p.EndsWith(Executable)))); @@ -40,9 +40,6 @@ project.ValidateBackgroundImage = false; project.BannerImage = @"..\assets\installer_bunner.png"; -// ユーザーレベルのインストールを強制する -project.InstallScope = InstallScope.perUser; - // ライセンスファイルの設定 project.LicenceFile = @"..\LICENSE.rtf";