by JasonRShaver
17. May 2009 16:58
So I noticed recently that I get alot of traffic and emails on people asking about my Auldey L3 YoYo, so I just wanted to post this really quick to hopefully answer the questions people seem to ask the most:
- I bought my via E-Bay, but it is quite hard to find one for sale. It is not really sellable in the U.S. due to patent concerns and you will not find any local stores carrying them. This is a shame as this is by far the best yo-yo I have ever owned.
- The L3 components are amazing, the KK bearing that comes with it is better than a 'Real' KK bearing (I own both). I did have to clean it out as it came heavily lubed.
- The finish is *really* good, I once was doing some 5A outside a Starbucks and lost control and saw my L3 roll down the sidewalk, off a curb, into the street, and come to rest against a car tire. The damage was almost non-existent.
bcda35b2-a2e5-4646-8979-e2ad9b86dc85|0|.0
Tags:
Blog
by JasonRShaver
16. May 2009 16:58
To get your Visual Studio 2008 WiX install project to create one of those 'Setup.exe' bootstrapper programs that auto-downloads the correct .NET Framework and stuff, add the following to your .wixproj file:
<ItemGroup>
<BootstrapperFile Include="Microsoft.Net.Framework.3.5">
<ProductName>Microsoft .NET Framework 3.5</ProductName>
</BootstrapperFile>
<BootstrapperFile Include="Microsoft.Windows.Installer.3.1">
<ProductName>Windows Installer 3.1</ProductName>
</BootstrapperFile>
</ItemGroup>
<Target Name="Bootstrapper" Inputs="$(OutDir)$(TargetFileName)"
Outputs="$(OutDir)\Setup.exe" Condition=" '$(OutputType)'=='package' ">
<GenerateBootstrapper ApplicationName="MyProductName" ApplicationFile="$(TargetFileName)"
BootstrapperItems="@(BootstrapperFile)" ComponentsLocation="HomeSite"
OutputPath="$(OutputPath)" Culture="en-US" />
</Target>
<PropertyGroup>
<BuildDependsOn>$(BuildDependsOn);Bootstrapper</BuildDependsOn>
</PropertyGroup>
It does not matter where you put it in the *.wixproj file as long as it is inside the Project tag.
8635b7e9-48b2-416a-8e75-d89dd58f8338|0|.0
Tags:
Blog