dev
リビジョン | 0eb69a3e40fa0534afb5da2b24e2f32585f0d2aa (tree) |
---|---|
日時 | 2013-11-10 01:09:45 |
作者 | Kimura Youichi <kim.upsilon@bucy...> |
コミッター | Kimura Youichi |
マニフェストファイルを追加
@@ -40,6 +40,9 @@ | ||
40 | 40 | <PropertyGroup> |
41 | 41 | <ApplicationIcon>Resources\4b.ico</ApplicationIcon> |
42 | 42 | </PropertyGroup> |
43 | + <PropertyGroup> | |
44 | + <ApplicationManifest>app.manifest</ApplicationManifest> | |
45 | + </PropertyGroup> | |
43 | 46 | <ItemGroup> |
44 | 47 | <Reference Include="System" /> |
45 | 48 | <Reference Include="System.Core" /> |
@@ -452,6 +455,9 @@ | ||
452 | 455 | <Link>LICENSE.LGPL-3</Link> |
453 | 456 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
454 | 457 | </None> |
458 | + <None Include="app.manifest"> | |
459 | + <SubType>Designer</SubType> | |
460 | + </None> | |
455 | 461 | </ItemGroup> |
456 | 462 | <ItemGroup> |
457 | 463 | <Content Include="Resources\3b.ico" /> |
@@ -0,0 +1,58 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | |
2 | +<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
3 | + <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/> | |
4 | + <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> | |
5 | + <security> | |
6 | + <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> | |
7 | + <!-- UAC マニフェスト オプション | |
8 | + Windows のユーザー アカウント制御のレベルを変更するには、 | |
9 | + requestedExecutionLevel ノードを以下のいずれかで置換します。 | |
10 | + | |
11 | + <requestedExecutionLevel level="asInvoker" uiAccess="false" /> | |
12 | + <requestedExecutionLevel level="requireAdministrator" uiAccess="false" /> | |
13 | + <requestedExecutionLevel level="highestAvailable" uiAccess="false" /> | |
14 | + | |
15 | + requestedExecutionLevel ノードを指定すると、ファイルおよびレジストリの仮想化は無効になります。 | |
16 | + 旧バージョンとの互換性のためにファイルおよびレジストリの仮想化を | |
17 | + 使用する場合は、requestedExecutionLevel ノードを削除します。 | |
18 | + --> | |
19 | + <requestedExecutionLevel level="asInvoker" uiAccess="false" /> | |
20 | + </requestedPrivileges> | |
21 | + </security> | |
22 | + </trustInfo> | |
23 | + | |
24 | + <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> | |
25 | + <application> | |
26 | + <!--このアプリケーションが動作するように設計されている、Windows のすべてのバージョンの一覧。 | |
27 | + Windows は最も互換性の高い環境を自動的に選択します。--> | |
28 | + | |
29 | + <!--アプリケーションが Windows Vista で動作するように設計されている場合は、次の supportedOS ノードのコメントを解除します--> | |
30 | + <!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS>--> | |
31 | + | |
32 | + <!-- アプリケーションが Windows 7 で動作するように設計されている場合は、次の supportedOS ノードのコメントを解除します。--> | |
33 | + <!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>--> | |
34 | + | |
35 | + <!--アプリケーションが Windows 8 で動作するように設計されている場合は、次の supportedOS ノードのコメントを解除します--> | |
36 | + <!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS>--> | |
37 | + | |
38 | + <!-- アプリケーションが Windows 8.1 で動作するように設計されている場合は、次の supportedOS ノードのコメントを解除してください--> | |
39 | + <!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>--> | |
40 | + | |
41 | + </application> | |
42 | + </compatibility> | |
43 | + | |
44 | + <!-- Windows のコモン コントロールとダイアログのテーマを有効にします (Windows XP 以降) --> | |
45 | + <!-- <dependency> | |
46 | + <dependentAssembly> | |
47 | + <assemblyIdentity | |
48 | + type="win32" | |
49 | + name="Microsoft.Windows.Common-Controls" | |
50 | + version="6.0.0.0" | |
51 | + processorArchitecture="*" | |
52 | + publicKeyToken="6595b64144ccf1df" | |
53 | + language="*" | |
54 | + /> | |
55 | + </dependentAssembly> | |
56 | + </dependency>--> | |
57 | + | |
58 | +</asmv1:assembly> |