testing projects all use the same pfx file

This commit is contained in:
Austin Diviness 2015-09-11 16:14:44 -07:00
Родитель f7c692cb3c
Коммит 9ee8c34a5a
20 изменённых файлов: 80 добавлений и 108 удалений

Просмотреть файл

@ -99,7 +99,13 @@
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<PackageCertificateKeyFile>FBWinStoreCppTests_TemporaryKey.pfx</PackageCertificateKeyFile>
<PackageCertificateKeyFile>..\..\winsdkfb_testing_key.pfx</PackageCertificateKeyFile>
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<AppxBundlePlatforms>x86|x64|arm</AppxBundlePlatforms>
<PackageCertificateThumbprint>F4E6BFEE8265BFC1A3B4A18D7F46397C6891526C</PackageCertificateThumbprint>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<TargetExt>.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
<ClCompile>
@ -176,7 +182,6 @@
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
<None Include="FBWinStoreCppTests_TemporaryKey.pfx" />
</ItemGroup>
<ItemGroup>
<Image Include="Assets\LockScreenLogo.scale-200.png" />
@ -213,6 +218,9 @@
<Project>{973a943b-ff77-4267-8f30-f5fe2b7f5583}</Project>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\winsdkfb_testing_key.pfx" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>

Просмотреть файл

@ -51,6 +51,6 @@
<AppxManifest Include="Package.appxmanifest" />
</ItemGroup>
<ItemGroup>
<None Include="FBWinStoreCppTests_TemporaryKey.pfx" />
<None Include="..\..\winsdkfb_testing_key.pfx" />
</ItemGroup>
</Project>

Просмотреть файл

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AppxPackageIsForStore>False</AppxPackageIsForStore>
<AppxShowAllApps>False</AppxShowAllApps>
<AppxBuildConfigurationSelection>x86|x64|arm</AppxBuildConfigurationSelection>
</PropertyGroup>
</Project>

Двоичный файл не отображается.

Просмотреть файл

@ -1,48 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
IgnorableNamespaces="uap mp">
<Identity
Name="b34471a2-a9f4-4b06-9670-7e8793c2a8a8"
Publisher="CN=austdi"
Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="b34471a2-a9f4-4b06-9670-7e8793c2a8a8" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="b34471a2-a9f4-4b06-9670-7e8793c2a8a8" Publisher="CN=winsdkfb" Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="b34471a2-a9f4-4b06-9670-7e8793c2a8a8" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>FBWinStoreCppTests</DisplayName>
<PublisherDisplayName>austdi</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate"/>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application Id="vstest.executionengine.universal.App"
Executable="$targetnametoken$.exe"
EntryPoint="FBWinStoreCppTests.App">
<uap:VisualElements
DisplayName="FBWinStoreCppTests"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png"
Description="FBWinStoreCppTests"
BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
<Application Id="vstest.executionengine.universal.App" Executable="$targetnametoken$.exe" EntryPoint="FBWinStoreCppTests.App">
<uap:VisualElements DisplayName="FBWinStoreCppTests" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="FBWinStoreCppTests" BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png">
</uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
</Capabilities>

Просмотреть файл

@ -16,9 +16,13 @@
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PackageCertificateKeyFile>FBWinStoreCsTests_TemporaryKey.pfx</PackageCertificateKeyFile>
<PackageCertificateKeyFile>..\..\winsdkfb_testing_key.pfx</PackageCertificateKeyFile>
<UnitTestPlatformVersion Condition="'$(UnitTestPlatformVersion)' == ''">14.0</UnitTestPlatformVersion>
<EnableDotNetNativeCompatibleProfile>true</EnableDotNetNativeCompatibleProfile>
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<AppxBundlePlatforms>x86|x64|arm</AppxBundlePlatforms>
<AppxBundle>Never</AppxBundle>
<PackageCertificateThumbprint>F4E6BFEE8265BFC1A3B4A18D7F46397C6891526C</PackageCertificateThumbprint>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
<DebugSymbols>true</DebugSymbols>
@ -97,6 +101,9 @@
<None Include="..\..\FBWinStoreCsTests\Utility.ttinclude">
<Link>Utility.ttinclude</Link>
</None>
<None Include="..\..\winsdkfb_testing_key.pfx">
<Link>winsdkfb_testing_key.pfx</Link>
</None>
<None Include="project.json" />
<SDKReference Include="MSTestFramework.Universal, Version=$(UnitTestPlatformVersion)" />
<SDKReference Include="TestPlatform.Universal, Version=$(UnitTestPlatformVersion)" />
@ -144,7 +151,6 @@
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
<None Include="FBWinStoreCsTests_TemporaryKey.pfx" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\FBWinStoreCsTests\FBObject.tt">

Двоичный файл не отображается.

Просмотреть файл

@ -1,45 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
IgnorableNamespaces="uap mp">
<Identity Name="321698ea-2a34-4929-8e8c-db050fb8bda9"
Publisher="CN=austdi"
Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="321698ea-2a34-4929-8e8c-db050fb8bda9" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="321698ea-2a34-4929-8e8c-db050fb8bda9" Publisher="CN=winsdkfb" Version="1.0.2.0" />
<mp:PhoneIdentity PhoneProductId="321698ea-2a34-4929-8e8c-db050fb8bda9" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>FBWinStoreCsTests</DisplayName>
<PublisherDisplayName>austdi</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application Id="vstest.executionengine.universal.App"
Executable="$targetnametoken$.exe"
EntryPoint="FBWinStoreCsTests.App">
<uap:VisualElements
DisplayName="FBWinStoreCsTests"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png"
Description="FBWinStoreCsTests"
BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
<Application Id="vstest.executionengine.universal.App" Executable="$targetnametoken$.exe" EntryPoint="FBWinStoreCsTests.App">
<uap:VisualElements DisplayName="FBWinStoreCsTests" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="FBWinStoreCsTests" BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png">
</uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
</Capabilities>
</Capabilities>
</Package>

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
@ -28,7 +28,7 @@
<ApplicationTypeRevision>8.1</ApplicationTypeRevision>
<TestApplication>true</TestApplication>
<AppxPackage>True</AppxPackage>
<PackageCertificateKeyFile>FBWinPhoneStoreCppTests_TemporaryKey.pfx</PackageCertificateKeyFile>
<PackageCertificateKeyFile>winsdkfb_testing_key.pfx</PackageCertificateKeyFile>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
@ -128,7 +128,7 @@
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
<None Include="FBWinPhoneStoreCppTests_TemporaryKey.pfx" />
<None Include="..\winsdkfb_testing_key.pfx" />
</ItemGroup>
<ItemGroup>
<Image Include="Assets\Logo.scale-240.png" />
@ -163,4 +163,4 @@
</PropertyGroup>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>

Просмотреть файл

@ -37,6 +37,6 @@
<AppxManifest Include="Package.appxmanifest" />
</ItemGroup>
<ItemGroup>
<None Include="FBWinPhoneStoreCppTests_TemporaryKey.pfx" />
<None Include="..\winsdkfb_testing_key.pfx" />
</ItemGroup>
</Project>

Просмотреть файл

Просмотреть файл

@ -117,7 +117,7 @@
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<PackageCertificateKeyFile>FBWinStoreCppTests_TemporaryKey.pfx</PackageCertificateKeyFile>
<PackageCertificateKeyFile>..\winsdkfb_testing_key.pfx</PackageCertificateKeyFile>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
@ -242,7 +242,7 @@
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
<None Include="FBWinStoreCppTests_TemporaryKey.pfx" />
<None Include="..\winsdkfb_testing_key.pfx" />
</ItemGroup>
<ItemGroup>
<Image Include="Images\UnitTestLogo.scale-100.png" />
@ -257,6 +257,8 @@
</ItemGroup>
<PropertyGroup>
<_DefineDefaultConvergedProjectType>False</_DefineDefaultConvergedProjectType>
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<PackageCertificateThumbprint>F4E6BFEE8265BFC1A3B4A18D7F46397C6891526C</PackageCertificateThumbprint>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets" />

Просмотреть файл

@ -54,6 +54,6 @@
</AppxManifest>
</ItemGroup>
<ItemGroup>
<None Include="FBWinStoreCppTests_TemporaryKey.pfx" />
<None Include="..\winsdkfb_testing_key.pfx" />
</ItemGroup>
</Project>

Просмотреть файл

@ -3,4 +3,9 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<DebuggerType>Mixed</DebuggerType>
</PropertyGroup>
<PropertyGroup>
<AppxPackageIsForStore>False</AppxPackageIsForStore>
<AppxShowAllApps>False</AppxShowAllApps>
<AppxBuildConfigurationSelection>x86</AppxBuildConfigurationSelection>
</PropertyGroup>
</Project>

Двоичный файл не отображается.

Просмотреть файл

@ -1,55 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest">
<Identity Name="62444c14-1a70-4a59-83f9-89832e4f2ecd"
Publisher="CN=blakeben"
Version="1.0.0.0" />
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest">
<Identity Name="62444c14-1a70-4a59-83f9-89832e4f2ecd" Publisher="CN=winsdkfb" Version="1.0.0.0" />
<Properties>
<DisplayName>FBWinStoreCppTests</DisplayName>
<PublisherDisplayName>blakeben</PublisherDisplayName>
<Logo>Images\UnitTestStoreLogo.png</Logo>
<Description>FBWinStoreCppTests</Description>
</Properties>
<Prerequisites>
<OSMinVersion>6.3.0</OSMinVersion>
<OSMaxVersionTested>6.3.0</OSMaxVersionTested>
</Prerequisites>
<Resources>
<Resource Language="x-generate"/>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application Id="vstest.executionengine.App"
Executable="vstest.executionengine.appcontainer.exe"
EntryPoint="vstest.executionengine.App">
<VisualElements
DisplayName="NoUIEntryPoints"
Logo="Images\UnitTestLogo.png"
SmallLogo="Images\UnitTestSmallLogo.png"
Description="vstest.executionengine.App"
ForegroundText="light"
BackgroundColor="#0084FF">
<SplashScreen Image="Images\UnitTestSplashScreen.png" />
</VisualElements>
<Application Id="vstest.executionengine.App" Executable="vstest.executionengine.appcontainer.exe" EntryPoint="vstest.executionengine.App">
<m2:VisualElements DisplayName="NoUIEntryPoints" Description="vstest.executionengine.App" BackgroundColor="#0084FF" ForegroundText="light" Square150x150Logo="Images\UnitTestLogo.png" Square30x30Logo="Images\UnitTestSmallLogo.png">
<m2:SplashScreen Image="Images\UnitTestSplashScreen.png" />
</m2:VisualElements>
</Application>
<Application Id="vstest.executionengine.x86.App"
Executable="vstest.executionengine.appcontainer.x86.exe"
EntryPoint="vstest.executionengine.x86.App">
<VisualElements
DisplayName="NoUIEntryPoints"
Logo="Images\UnitTestLogo.png"
SmallLogo="Images\UnitTestSmallLogo.png"
Description="vstest.executionengine.x86.App"
ForegroundText="light"
BackgroundColor="#0084FF">
<SplashScreen Image="Images\UnitTestSplashScreen.png" />
</VisualElements>
<Application Id="vstest.executionengine.x86.App" Executable="vstest.executionengine.appcontainer.x86.exe" EntryPoint="vstest.executionengine.x86.App">
<VisualElements DisplayName="NoUIEntryPoints" Logo="Images\UnitTestLogo.png" SmallLogo="Images\UnitTestSmallLogo.png" Description="vstest.executionengine.x86.App" ForegroundText="light" BackgroundColor="#0084FF">
<SplashScreen Image="Images\UnitTestSplashScreen.png" />
</VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
</Capabilities>
</Package>
</Package>

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
@ -16,10 +16,12 @@
<MinimumVisualStudioVersion>12</MinimumVisualStudioVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PackageCertificateKeyFile>FBWinStoreCsTests_TemporaryKey.pfx</PackageCertificateKeyFile>
<PackageCertificateKeyFile>..\winsdkfb_testing_key.pfx</PackageCertificateKeyFile>
<AppxBundle>Never</AppxBundle>
<AllowCrossPlatformRetargeting>False</AllowCrossPlatformRetargeting>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<PackageCertificateThumbprint>F4E6BFEE8265BFC1A3B4A18D7F46397C6891526C</PackageCertificateThumbprint>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
<DebugSymbols>true</DebugSymbols>
@ -108,12 +110,14 @@
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
<None Include="..\winsdkfb_testing_key.pfx">
<Link>winsdkfb_testing_key.pfx</Link>
</None>
<None Include="FBCSObjectImplementation.ttinclude" />
<None Include="FBPhoto.tt" />
<None Include="FBObject.tt" />
<None Include="FBSuccess.tt" />
<None Include="FBTestUser.tt" />
<None Include="FBWinStoreCsTests_TemporaryKey.pfx" />
<None Include="packages.config" />
<None Include="Utility.ttinclude" />
</ItemGroup>
@ -171,4 +175,4 @@ popd
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>

Двоичный файл не отображается.

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest">
<Identity Name="b458ea4a-97c6-43df-9ded-8dd933dd14e9" Publisher="CN=blakeben" Version="1.0.0.0" />
<Identity Name="b458ea4a-97c6-43df-9ded-8dd933dd14e9" Publisher="CN=winsdkfb" Version="1.0.0.0" />
<Properties>
<DisplayName>FBWinStoreCsTests</DisplayName>
<PublisherDisplayName>blakeben</PublisherDisplayName>

Двоичные данные
FBWinSDK/winsdkfb_testing_key.pfx Normal file

Двоичный файл не отображается.