Index: dxglcfg/dxglcfg.vcxproj |
— | — | @@ -64,15 +64,19 @@ |
65 | 65 | <PropertyGroup Label="UserMacros" />
|
66 | 66 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
67 | 67 | <LinkIncremental>true</LinkIncremental>
|
| 68 | + <GenerateManifest>false</GenerateManifest>
|
68 | 69 | </PropertyGroup>
|
69 | 70 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug no DXGL|Win32'">
|
70 | 71 | <LinkIncremental>true</LinkIncremental>
|
| 72 | + <GenerateManifest>false</GenerateManifest>
|
71 | 73 | </PropertyGroup>
|
72 | 74 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
73 | 75 | <LinkIncremental>false</LinkIncremental>
|
| 76 | + <GenerateManifest>false</GenerateManifest>
|
74 | 77 | </PropertyGroup>
|
75 | 78 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release no DXGL|Win32'">
|
76 | 79 | <LinkIncremental>false</LinkIncremental>
|
| 80 | + <GenerateManifest>false</GenerateManifest>
|
77 | 81 | </PropertyGroup>
|
78 | 82 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
79 | 83 | <ClCompile>
|
Index: dxglcfg/xp.manifest |
— | — | @@ -6,7 +6,7 @@ |
7 | 7 | name="WilliamFeely.DXGL.DXGLCfg"
|
8 | 8 | type="win32"
|
9 | 9 | />
|
10 | | -<description>Your application description here.</description>
|
| 10 | +<description>DXGL Configuration Program</description>
|
11 | 11 | <dependency>
|
12 | 12 | <dependentAssembly>
|
13 | 13 | <assemblyIdentity
|
— | — | @@ -19,4 +19,11 @@ |
20 | 20 | />
|
21 | 21 | </dependentAssembly>
|
22 | 22 | </dependency>
|
| 23 | + <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
| 24 | + <application>
|
| 25 | + <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
| 26 | + <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
| 27 | + <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
| 28 | + </application>
|
| 29 | + </compatibility>
|
23 | 30 | </assembly> |
\ No newline at end of file |
Index: dxgltest/dxgltest.vcxproj |
— | — | @@ -69,6 +69,7 @@ |
70 | 70 | <SourcePath>$(WXWIN)\src;$(SourcePath)</SourcePath>
|
71 | 71 | <RunCodeAnalysis>false</RunCodeAnalysis>
|
72 | 72 | <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
| 73 | + <GenerateManifest>false</GenerateManifest>
|
73 | 74 | </PropertyGroup>
|
74 | 75 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug no DXGL|Win32'">
|
75 | 76 | <LinkIncremental>true</LinkIncremental>
|
— | — | @@ -77,6 +78,7 @@ |
78 | 79 | <SourcePath>$(WXWIN)\src;$(SourcePath)</SourcePath>
|
79 | 80 | <RunCodeAnalysis>false</RunCodeAnalysis>
|
80 | 81 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
| 82 | + <GenerateManifest>false</GenerateManifest>
|
81 | 83 | </PropertyGroup>
|
82 | 84 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
83 | 85 | <LinkIncremental>false</LinkIncremental>
|
— | — | @@ -83,6 +85,7 @@ |
84 | 86 | <IncludePath>$(WXWIN)\include;$(WXWIN)\lib\vc_lib\mswu;$(IncludePath)</IncludePath>
|
85 | 87 | <LibraryPath>$(WXWIN)\lib\vc_lib;$(DXSDK_DIR)lib\x86;$(LibraryPath)</LibraryPath>
|
86 | 88 | <SourcePath>$(WXWIN)\src;$(SourcePath)</SourcePath>
|
| 89 | + <GenerateManifest>false</GenerateManifest>
|
87 | 90 | </PropertyGroup>
|
88 | 91 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release no DXGL|Win32'">
|
89 | 92 | <LinkIncremental>false</LinkIncremental>
|
— | — | @@ -89,6 +92,7 @@ |
90 | 93 | <IncludePath>$(WXWIN)\include;$(WXWIN)\lib\vc_lib\mswu;$(IncludePath)</IncludePath>
|
91 | 94 | <LibraryPath>$(WXWIN)\lib\vc_lib;$(DXSDK_DIR)lib\x86;$(LibraryPath)</LibraryPath>
|
92 | 95 | <SourcePath>$(WXWIN)\src;$(SourcePath)</SourcePath>
|
| 96 | + <GenerateManifest>false</GenerateManifest>
|
93 | 97 | </PropertyGroup>
|
94 | 98 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
95 | 99 | <ClCompile>
|
Index: dxgltest/xp.manifest |
— | — | @@ -6,7 +6,7 @@ |
7 | 7 | name="WilliamFeely.DXGL.DXGLTest"
|
8 | 8 | type="win32"
|
9 | 9 | />
|
10 | | -<description>Your application description here.</description>
|
| 10 | +<description>DXGL Test Application</description>
|
11 | 11 | <dependency>
|
12 | 12 | <dependentAssembly>
|
13 | 13 | <assemblyIdentity
|
— | — | @@ -19,4 +19,11 @@ |
20 | 20 | />
|
21 | 21 | </dependentAssembly>
|
22 | 22 | </dependency>
|
| 23 | + <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
| 24 | + <application>
|
| 25 | + <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
| 26 | + <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
| 27 | + <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
| 28 | + </application>
|
| 29 | + </compatibility>
|
23 | 30 | </assembly> |
\ No newline at end of file |