vote up 0 vote down star

I have a fairly small solution that includes a WPF windows application. It builds perfectly fine when built from the solution. I recently integrated the projects contained within the solution into an existing, much larger command line build that uses MSBuild. When built from the command line, however, I get the following errors:

MainWindow.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context
View\EngineMonitorView.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context
View\HostingEngineView.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context
View\MainView.xaml.cs(13,4): error CS0103: The name 'InitializeComponent' does not exist in the current context
View\MainView.xaml.cs(17,52): error CS0103: The name 'gView' does not exist in the current context
View\PerformanceCounterView.xaml.cs(22,4): error CS0103: The name 'InitializeComponent' does not exist in the current context
View\PerformanceCounterView.xaml.cs(117,22): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(118,20): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(127,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(138,5): error CS0103: The name 'txtScale' does not exist in the current context
View\PerformanceCounterView.xaml.cs(179,5): error CS0103: The name 'txtLast' does not exist in the current context
View\PerformanceCounterView.xaml.cs(180,5): error CS0103: The name 'txtMin' does not exist in the current context
View\PerformanceCounterView.xaml.cs(181,5): error CS0103: The name 'txtMax' does not exist in the current context
View\PerformanceCounterView.xaml.cs(189,5): error CS0103: The name 'txtAverage' does not exist in the current context
View\PerformanceCounterView.xaml.cs(250,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(251,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(253,27): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(255,27): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(264,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(269,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(274,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(279,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(293,5): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(303,5): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(318,5): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(325,5): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\PerformanceCounterView.xaml.cs(342,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context
View\ServerMonitorView.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context
View\ServerTreeView.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context
View\ServiceDetailView.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context
View\ServiceMonitorView.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context

I included the WinFX targets file from .NET 3.5 in our root MSBuild .proj file, as it did not appear to be included anywhere else:

<Import Project="$(MSBuildBinPath)\Microsoft.WinFX.targets" />

That did not seem to affect anything, though, and I am still encountering the errors. As far as I can tell, it appears that the custom WPF build tasks that precompile the .xaml files into .cs files, embeds and wires up resources, etc. are not running, which is why InitializeComponent and any controls defined in my views are not found. I am at a loss as to why, though...and trying to wade through the zillions of search results related to WPF and MSBuild is not getting me anywhere.

UPDATE:

Adding the Microsoft.WinFX.targets to the .csproj file seems like it would work. However, doing so causes the project to fail to build within Visual Studio 2008. Somehow, VS is including those targets for you...but I am unsure how. Does anyone know more about how VS builds WPF projects? Is there a master build file hiding somewhere that imports the appropriate targets?

flag

I would love to help you more with this, but I really need to see your build files to be able to help. If you can't share your actual build files I understand, try and repro with a simple new project. – Drew Marsh Nov 8 at 14:52
I would love to share my build files, but there are nearly a dozen different files imported into a massive build. Its a scary blob that really shouldn't even exist, but change is slow where I work. – jrista Nov 8 at 18:36
You can't repro with like two files? One representing your "main" build file and the other including the .[cs|vb]proj for the project? – Drew Marsh Nov 10 at 16:43
Our build is a ridiculous beast. It involves dozens of files, including .tasks, .targets, .proj, and .components files. It performs not just build, but also web site creation, GACing, deployment, etc. Trying to decompose and create a mock scenario is a weeks long project. My question is mostly about why, even though I have imported the Microsoft.WinFX.targets file, the WPF tasks are not actually being invoked...have I imported the .targets file in the wrong place? Are there special concerns regarding it? Are there other .targets files that need to be included? etc. – jrista Nov 10 at 17:34

3 Answers

vote up 2 vote down check

Send msbuild your solution file instead of your .csproj file can sometimes help:

msbuild.exe yoursolution.sln

Also, devenv.exe itself offers a command-line build that's supposed to be equivalent to the in-IDE experience:

devenv.exe /build yoursolution.sln
link|flag
vote up 1 vote down

Check out this section of the MSDN SDK called Building WPF Applications and make sure you're doing everything you need.

link|flag
I did read that article before I posted my question. That was how I learned about Microsoft.WinFX.targets. The build still doesn't work at the command line with msbuild, however. Very confusing problem. – jrista Nov 4 at 1:45
Hmmm, I mean it's clearly not processing the XAML correctly. It should be finding your <Page> items and processing them. Are those the only errors/warnings from MSBuild? Maybe throw the /verbosity:detailed switch on the call to MSBuild to see if there's something silently failing under the scenes. – Drew Marsh Nov 4 at 2:04
Yeah, those are the only errors. There are no other warnings...the project has zero warnings. – jrista Nov 4 at 17:16
vote up 0 vote down

Without seeing the project file directly, it's difficult to tell for sure, but it looks like your project is missing the <Page... include sections.

For example, make sure, where you define your MainWindow, that you have:

<ItemGroup>
   <Page Include="MainWindow.xaml" />
   <Compile Include="MainWindow.xaml.cs" />
   ... Other items...

That, in addition to your Import of WinFX.targets, should allow this to work properly.

Right now, your errors are suggesting that the "Page" tags are missing, but the "Compile" tags for the code-behind are all in place.

link|flag
The problem is he says the same project compiles just fine under VS2008. :\ – Drew Marsh Nov 10 at 3:42
The Page tags are present. I am curious about the WinFX.targets, though. I have imported it, earlier on in the root build .proj file for the command line build. Does the WinFX.targets file need to be imported in a certain way to be properly applied? – jrista Nov 10 at 6:01
Can you post the whole section (to the root) where you're including the WinFX.targets? – Reed Copsey Nov 10 at 17:00
@Drew: It builds in 2008, but he's moving stuff into a different .proj file - so this specific proj file isn't the same... – Reed Copsey Nov 10 at 17:00
Ultimately, the same exact .csproj file that is built by VS2008 is built by the command line build. However, VS2008 takes care of the WinFX.targets stuff for you...it is not imported directly by the .csproj. However, I have added an import for the WinFX.targets file, and the command line build STILL is not building the WPF specific targets. That is where my confusion lies... – jrista Nov 10 at 17:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.