mirror of
https://github.com/tenrok/Rfid-Credential-Provider.git
synced 2026-06-05 16:52:24 +03:00
Adding files from my site
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,81 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Microsoft.Win32;
|
||||
using System.IO;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace RegisterSystem
|
||||
{
|
||||
class Program
|
||||
{
|
||||
[DllImport("kernel32.dll", SetLastError = true)]
|
||||
public static extern bool Wow64DisableWow64FsRedirection(ref IntPtr ptr);
|
||||
|
||||
[DllImport("kernel32.dll", SetLastError=true)]
|
||||
public static extern bool Wow64EnableWow64FsRedirection(ref IntPtr ptr);
|
||||
|
||||
private static bool isBoxed = (!Environment.Is64BitProcess && Environment.Is64BitOperatingSystem);
|
||||
public static readonly RegistryKey Software = RegistryKey.OpenBaseKey(Microsoft.Win32.RegistryHive.LocalMachine, (isBoxed) ? RegistryView.Registry64 : RegistryView.Default).OpenSubKey("SOFTWARE", true);
|
||||
static void Main(string[] args)
|
||||
{
|
||||
try
|
||||
{
|
||||
Console.WriteLine("Generating Registry Structure...");
|
||||
RegistryKey Base = Software.CreateSubKey("Tyler Menezes");
|
||||
Base = Base.CreateSubKey("Rfid Login");
|
||||
|
||||
Console.WriteLine("Adding default configuration...");
|
||||
Base.SetValue("Port", "COM3");
|
||||
Base.SetValue("Message Start", 0x02);
|
||||
Base.SetValue("Message End", 0x0d);
|
||||
|
||||
Console.WriteLine("Reversing Entropy...");
|
||||
string randomSalt = Hash(((new Random()).Next(int.MaxValue) + DateTime.Now.Ticks).ToString());
|
||||
|
||||
Console.WriteLine("Enumerating the null set...");
|
||||
Base = Base.CreateSubKey("Keys");
|
||||
Base.SetValue("Salt", randomSalt);
|
||||
|
||||
Console.WriteLine("Doing magical Windows-y things...");
|
||||
string provider = (Environment.Is64BitOperatingSystem)? "64" : "32";
|
||||
provider = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location) + "\\CredentialProviders\\" + provider + "\\RfidCredentialProvider.dll";
|
||||
string to = Environment.GetEnvironmentVariable("SystemRoot") + "\\System32\\RfidCredentialProvider.dll";
|
||||
|
||||
IntPtr p = new IntPtr();
|
||||
|
||||
if (isBoxed)
|
||||
{
|
||||
Wow64DisableWow64FsRedirection(ref p);
|
||||
}
|
||||
|
||||
if (File.Exists(to))
|
||||
{
|
||||
File.Delete(to);
|
||||
}
|
||||
File.Copy(provider, to);
|
||||
|
||||
if (isBoxed)
|
||||
{
|
||||
Wow64EnableWow64FsRedirection(ref p);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Console.WriteLine(ex.Message);
|
||||
Console.ReadLine();
|
||||
throw ex;
|
||||
}
|
||||
}
|
||||
|
||||
private static string Hash(string toHash)
|
||||
{
|
||||
System.Security.Cryptography.SHA1CryptoServiceProvider x = new System.Security.Cryptography.SHA1CryptoServiceProvider();
|
||||
byte[] data = System.Text.Encoding.ASCII.GetBytes(toHash);
|
||||
data = x.ComputeHash(data);
|
||||
string o = BitConverter.ToString(data).Replace("-", "").ToUpper();
|
||||
return o;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("RegisterSystem")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Tyler Menezes")]
|
||||
[assembly: AssemblyProduct("RegisterSystem")]
|
||||
[assembly: AssemblyCopyright("Copyright © Tyler Menezes 2011")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("5c4a7292-63dc-4920-a8bc-b94773b7b868")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{392410E4-C8FF-4E9F-BA6F-D791F95A6CDB}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>RegisterSystem</RootNamespace>
|
||||
<AssemblyName>RegisterSystem</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<OutputPath>bin\x64\Release\</OutputPath>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\bin\x64\Debug\RegisterSystem.exe
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\bin\x64\Debug\RegisterSystem.pdb
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\obj\x64\Debug\ResolveAssemblyReference.cache
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\obj\x64\Debug\RegisterSystem.exe
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\obj\x64\Debug\RegisterSystem.pdb
|
||||
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\bin\x64\Release\RegisterSystem.exe
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\obj\x64\Release\ResolveAssemblyReference.cache
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\obj\x64\Release\RegisterSystem.exe
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\Installer\RegisterSystem\bin\x64\Release\RegisterSystem.exe
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\Installer\RegisterSystem\obj\x64\Release\ResolveAssemblyReference.cache
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\Installer\RegisterSystem\obj\x64\Release\RegisterSystem.exe
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\bin\Debug\RegisterSystem.exe
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\bin\Debug\RegisterSystem.pdb
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\obj\x86\Debug\ResolveAssemblyReference.cache
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\obj\x86\Debug\RegisterSystem.exe
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\obj\x86\Debug\RegisterSystem.pdb
|
||||
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\bin\Release\RegisterSystem.exe
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\bin\Release\RegisterSystem.pdb
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\obj\x86\Release\ResolveAssemblyReference.cache
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\obj\x86\Release\RegisterSystem.exe
|
||||
C:\Users\tylermenezes\Desktop\RfidLoginProvider\RegisterSystem\obj\x86\Release\RegisterSystem.pdb
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,48 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
||||
<PropertyGroup>
|
||||
<!-- Select a Product Configuration -->
|
||||
<InstallShieldProductConfiguration>Express</InstallShieldProductConfiguration>
|
||||
<!-- Select a Visual Studio Configuration / InstallShield Release -->
|
||||
<Configuration>Debug</Configuration>
|
||||
<InstallShieldRelease>$(Configuration)</InstallShieldRelease>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<!-- The InstallShieldProject item selects the project to build -->
|
||||
<InstallShieldProject Include="$(MSBuildProjectDirectory)\$(MSBuildProjectName).isl"/>
|
||||
<!-- The InstallShieldReleaseFlags sets Release Flags -->
|
||||
<!--<InstallShieldReleaseFlags Include=""/>-->
|
||||
<!-- The InstallShieldMergeModulePath specifies what directories are
|
||||
searched for Merge Modules -->
|
||||
<!--<InstallShieldMergeModulePath Include=""/>-->
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<!-- The ProjectReference items refer to any Visual Studio solutions you want to automatically probe for Project Output Groups. -->
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<!-- The TaggedOutputs items allow you to explicitly add extra files to output groups. Each item must include both Name and OutputGroup, as well as TargetPath metadata values. -->
|
||||
<!--<TaggedOutputs Include="C:\My Test Exe.exe">
|
||||
<Name>My Test Project</Name>
|
||||
<OutputGroup>Primary output</OutputGroup>
|
||||
<TargetPath>My Test Exe.exe</TargetPath>
|
||||
</TaggedOutputs> -->
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath32)\InstallShield\2011Limited\InstallShield.targets"/>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Manager\TestWizard\TestWizard.csproj">
|
||||
<Name>TestWizard</Name>
|
||||
<Project>{C4C2A78E-01F3-4D2C-A3FB-1C90D8F58033}</Project>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Manager\Wizard.Controls\Wizard.Controls.csproj">
|
||||
<Name>Wizard.Controls</Name>
|
||||
<Project>{23AD43FF-38F2-4FEC-9FAA-D7B2FA54492B}</Project>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Manager\Wizard.UI\Wizard.UI.csproj">
|
||||
<Name>Wizard.UI</Name>
|
||||
<Project>{80614F74-563D-418E-9BF6-1294F73521C0}</Project>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\RegisterSystem\RegisterSystem.csproj">
|
||||
<Name>RegisterSystem1</Name>
|
||||
<Project>{392410E4-C8FF-4E9F-BA6F-D791F95A6CDB}</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,353 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.78 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 4:32:56 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:06:47 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 3:03:23 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 4:19:07 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
312832
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,421 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.85 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:17:54 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:17:53 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:17:54 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 4:19:07 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
312832
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 4:37:59 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
5632
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,421 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.85 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:17:54 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:17:53 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:17:54 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 4:19:07 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
312832
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 4:37:59 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
5632
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,421 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.85 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:19:42 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:19:41 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:19:42 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:19:50 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
312832
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:19:41 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
5632
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,489 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
9
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.24 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:18 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:19:41 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:17 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:17 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:17 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,489 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
9
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.24 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:18 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:19:41 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:17 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:22:47 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:22:47 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,489 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
9
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.24 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:23:31 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:19:41 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:17 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:22:47 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:22:47 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,489 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
9
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.24 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:25:00 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:19:41 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:17 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:22:47 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:22:47 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,489 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
9
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.24 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:25:49 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:25:49 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:25:49 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:22:47 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:22:47 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.08 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:40:14 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:25:49 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:25:49 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:18:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:40:14 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6656
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.74 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:42:02 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:42:01 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:42:02 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:42:02 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6656
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.08 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:42:53 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:42:52 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:42:53 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:42:59 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 6:42:52 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6656
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,421 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.01 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:25:15 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:25:13 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:25:15 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:25:22 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,421 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.01 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:25:15 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:25:13 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:25:15 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:25:22 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.08 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:27:41 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:27:41 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:27:41 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:27:47 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:27:41 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6656
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.08 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:32:19 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:32:18 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:32:18 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:32:24 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:32:18 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6656
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.08 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:32:19 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:32:18 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:32:18 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:32:24 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:33:54 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6656
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.08 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:34:23 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:34:22 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:34:22 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:34:29 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:34:22 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6656
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.08 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:38:33 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:38:32 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:38:32 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:38:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:38:32 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7168
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.08 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:40:03 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:40:03 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:40:03 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:40:12 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:40:03 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7168
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.08 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:44:17 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:44:16 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:44:17 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:44:24 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:44:17 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7168
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.08 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:59:02 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:59:02 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:59:02 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:59:09 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 10:59:02 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7168
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.08 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 11:01:31 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 11:01:30 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 11:01:30 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 11:01:37 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 11:01:30 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7168
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.06 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 11:01:30 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7168
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 11:01:37 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
355840
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 11:09:46 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
274432
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 11:09:45 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
16384
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 11:09:45 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
204800
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
DVD-5
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.54 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:06:05 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7168
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:06:06 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
274432
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:06:05 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
16384
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:06:06 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
204800
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,421 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
SingleImage
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:23:56 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:23:55 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:23:56 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:24:02 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:23:55 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
5120
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,421 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
SingleImage
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
7
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:24:53 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:24:53 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:24:53 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:24:59 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:24:53 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
5120
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,489 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
SingleImage
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
9
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:39 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
5120
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[SystemFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:44 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
192000
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
5120
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,387 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
SingleImage
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:07:00 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
191488
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:39 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
SingleImage
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:08:26 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6656
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:08:12 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
184320
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:07:46 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
191488
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:39 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
SingleImage
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:11:18 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6656
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:08:12 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
184320
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:07:46 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
191488
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:39 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
@@ -0,0 +1,455 @@
|
||||
<HTML><HEAD><TITLE>Build Report</TITLE></HEAD><BODY>
|
||||
|
||||
<B><FONT FACE="Arial" SIZE=4><P ALIGN="center">
|
||||
Build Report</P></B></FONT>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Summary</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of features:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of merge modules:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of dynamic links:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Media:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
SingleImage
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Number of files:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
8
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Uncompressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="45%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Compressed files total size:
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="55%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
0.00 MB
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Features</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="100%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
AlwaysInstall
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Merge Modules</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Dynamic links</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<B><I><FONT FACE="Arial" ><P>
|
||||
Files</P></I></B></FONT>
|
||||
|
||||
<TABLE CELLSPACING=0 STYLE="margin-left:20" BORDER=0 CELLPADDING=4 WIDTH=600>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
File
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Destination
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Feature
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Last Modified
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Size (bytes)
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><B><I><FONT FACE="Arial"SIZE=2><P>
|
||||
|
||||
Version
|
||||
</I></B></FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RegisterSystem.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:11:18 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
6656
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Microsoft.CSharp.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/18/2010 6:31:26 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
65376
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
4.0.30319.1
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\32
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:08:12 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
184320
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
RfidCredentialProvider.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[TempFolder]CredentialProviders\64
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/2/2011 12:07:46 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
191488
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.Controls.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
20480
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Wizard.UI.dll
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:38 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
208896
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 5:33:39 PM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
278528
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
1.0.0.0
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
|
||||
<TD WIDTH="30%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Credential Manager.exe.config
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="20%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
[ProgramFilesFolder]Tyler Menezes\Rfid Login Credential Provider
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
Always Install
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="15%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
3/1/2011 2:12:10 AM
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
144
|
||||
</FONT></P></TD>
|
||||
|
||||
<TD WIDTH="10%"VALIGN="center"><FONT FACE="Times New Roman"SIZE=2><P>
|
||||
|
||||
|
||||
</FONT></P></TD>
|
||||
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</BODY></HTML>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user