NoteToSelf: aspnet_merge.exe, Team City and Web Deployment for Visual Studio 2008

Mar 1, 2008

I had to modify the Microsoft.WebDeployment.targets file to be able to compile through Team City the Web Deployment 2008 project !

<!-- Changed KEL ExePath="$(FrameworkSDKDir)bin" -->
<Target Name="AspNetMerge" 
        Condition="'$(UseMerge)' == 'true'"
        DependsOnTargets="$(MergeDependsOn)">
  <AspNetMerge
    ExePath="C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin"
    ApplicationPath="$(TempBuildDir)"
    KeyFile="$(_FullKeyFile)"
    DelaySign="$(DelaySign)"
    Prefix="$(AssemblyPrefixName)"
    SingleAssemblyName="$(SingleAssemblyName)"
    Debug="$(DebugSymbols)"
    Nologo="$(NoLogo)"
    ContentAssemblyName="$(ContentAssemblyName)"
    ErrorStack="$(ErrorStack)"
    RemoveCompiledFiles="$(DeleteAppCodeCompiledFiles)"
    CopyAttributes="$(CopyAssemblyAttributes)"
    AssemblyInfo="$(AssemblyInfoDll)"
    MergeXmlDocs="$(MergeXmlDocs)"
    ErrorLogFile="$(MergeErrorLogFile)"
  />
 
  <CreateItem Include="$(TempBuildDir)**\*.*">
    <Output ItemName="PrecompiledOutput" TaskParameter="Include" />
  </CreateItem>
  </Target>

Continue reading

Nice Resharper 4 feature

Today I am developing for my company innoveo solutions, and hope to be able to tell you on what soon ;-)

I came accross this great new feature of JetBrains ReSharper 4, read more about all features on this page.

Continue reading

Tech Head Brothers new authoring tool, step 6

Another day another step!

Tonight I wanted to work on the list and on the optimization a bit because I did use to much time the parsing of the whole WordML document.

Continue reading

Page 58 of 145