Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 67481
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T19:16:00+00:00 2026-05-10T19:16:00+00:00

I have a simple Word to Pdf converter as an MSBuild Task. The task

  • 0

I have a simple Word to Pdf converter as an MSBuild Task. The task takes Word files (ITaskItems) as input and Pdf files (ITaskItems) as output. The script uses a Target transform for conversion:

<Project DefaultTargets='Build' xmlns='http://schemas.microsoft.com/developer/msbuild/2003' ToolsVersion='3.5'>   <UsingTask AssemblyFile='$(MSBuildExtensionsPath)\MyTasks.dll' TaskName='MyTasks.DocToPdf' />   <Target Name='Build' DependsOnTargets='Convert' />   <Target Name='Convert'           Inputs='@(WordDocuments)'           Outputs='@(WordDocuments->'%(FileName).pdf')'>     <DocToPdf Inputs='@(WordDocuments)'               Outputs='%(FileName).pdf'>       <Output TaskParameter='ConvertedFiles' ItemName='PdfDocuments' />     </DocToPdf>   </Target>   <ItemGroup>     <WordDocuments Include='One.doc' />     <WordDocuments Include='SubDir\Two.doc' />      <WordDocuments Include='**\*.doc' />   </ItemGroup> </Project> 

What’s happening is that SubDir\Two.doc gets converted on every incremental build, One.doc does not (ie MSBuild correctly skips that file because it was already converted). If I use the recursive items spec (the third one above), I get the same behaviour (ie. One.doc only gets converted if the PDF is out of date or missing, but all documents in subdirectories always get converted regardless).

What am I doing wrong here?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T19:16:01+00:00Added an answer on May 10, 2026 at 7:16 pm

    I found the problem. It turns out that I had some logic in the Task that would turn any relative path specified for a PDF file into an absolute path. Once I removed that and changed the script to this:

      <Target Name='Convert'           Inputs='@(WordDocuments)'           Outputs='@(WordDocuments->'%(RelativeDir)%(FileName).pdf')'>     <DocToPdf Inputs='%(WordDocuments.Identity)'               Outputs='%(RelativeDir)%(FileName).pdf'>       <Output TaskParameter='ConvertedFiles' ItemName='PdfDocuments' />     </DocToPdf>   </Target> 

    I got the behaviour I expected.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 65k
  • Answers 65k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Rules of thumb: Don't manipulate GUI components in arbitrary threads;… May 11, 2026 at 11:00 am
  • added an answer ADO.NET is the underlying data access API for .NET Framework… May 11, 2026 at 11:00 am
  • added an answer What Eclipse Plugin are you using for Actionscript ? I'm… May 11, 2026 at 11:00 am

Related Questions

I have a simple Word to Pdf converter as an MSBuild Task. The task
I have a simple webform that will allow unauthenticated users to input their information,
I have a simple 2-column layout with a footer that clears both the right
I have a simple page with my ScriptManager and my UpdatePanel , and my
I have a simple little test app written in Flex 3 (MXML and some
I have a simple setter method for a property and null is not appropriate
I have a simple web service operation like this one: [WebMethod] public string HelloWorld()
I have a simple WPF application which I am trying to start. I am
I have a simple SQL 'Select' query, and I'd like to dump the results
I have a simple xml document that looks like the following snippet. I need

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.