Jelajahi Sumber

modified: CMakeLists.txt

Satoshi Yoneda 2 minggu lalu
induk
melakukan
d8b35f8cc8
2 mengubah file dengan 20 tambahan dan 31 penghapusan
  1. 1 1
      CMakeLists.txt
  2. 19 30
      Deploy/AppxManifest.xml.in

+ 1 - 1
CMakeLists.txt

@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.21)
-project(DupFind VERSION 0.3.2 LANGUAGES CXX)
+project(DupFind VERSION 0.3.3 LANGUAGES CXX)
 
 set(CMAKE_CXX_STANDARD 20)
 set(CMAKE_CXX_STANDARD_REQUIRED ON)

+ 19 - 30
Deploy/AppxManifest.xml.in

@@ -44,37 +44,26 @@
   <!-- 5. エントリポイントとスタートメニュー設定      -->
   <!-- ============================================== -->
 <Applications>
-    <Application Id="DupFind" Executable="DupFind.exe" EntryPoint="Windows.FullTrustApplication">
-      <uap:VisualElements
-        DisplayName="DupFind"
-        Description="GUI version of Duplicate Image Finder"
-        BackgroundColor="transparent"
-        Square150x150Logo="Assets\Square150x150Logo.png"
-        Square44x44Logo="Assets\Square44x44Logo.png"
-        AppListEntry="default">
-        <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
-        <uap:SplashScreen Image="Assets\SplashScreen.png" />
-      </uap:VisualElements>
-    </Application>
-
-    <Application Id="DupFindCmd" Executable="DupFindCmd.exe" EntryPoint="Windows.FullTrustApplication">
-      <uap:VisualElements
-        DisplayName="DupFind CLI"
-        Description="Command line interface for DupFind"
-        BackgroundColor="transparent"
-        Square150x150Logo="Assets\Square150x150Logo.png"
-        Square44x44Logo="Assets\Square44x44Logo.png"
-        AppListEntry="default">
-        </uap:VisualElements>
-
-      <Extensions>
-        <uap3:Extension Category="windows.appExecutionAlias">
-          <uap3:AppExecutionAlias>
+  <Application Id="DupFind" Executable="DupFind.exe" EntryPoint="Windows.FullTrustApplication">
+    <uap:VisualElements
+      DisplayName="DupFind"
+      Description="GUI version of Duplicate Image Finder"
+      BackgroundColor="transparent"
+      Square150x150Logo="Assets\Square150x150Logo.png"
+      Square44x44Logo="Assets\Square44x44Logo.png"
+      AppListEntry="default">
+      <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
+      <uap:SplashScreen Image="Assets\SplashScreen.png" />
+    </uap:VisualElements>
+    <Extensions>
+      <uap3:Extension Category="windows.appExecutionAlias">
+        <uap3:AppExecutionAlias>
           <desktop:ExecutionAlias Alias="DupFindCmd.exe" />
-          </uap3:AppExecutionAlias>
-      </uap3:Extension>      </Extensions>
-    </Application>
-  </Applications>
+        </uap3:AppExecutionAlias>
+      </uap3:Extension>
+    </Extensions>
+  </Application>
+</Applications>
 
   <!-- ============================================== -->
   <!-- 6. 既存のWin32APIをフルに使用するための権限  -->