1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
4 <AssemblyName>ImageView</AssemblyName>
5 <TargetType>winexe</TargetType>
6 <Configuration Condition="'$(Configuration)'==''">Debug</Configuration>
7 <ProductVersion>8.0.50215</ProductVersion>
8 <SchemaVersion>2.0</SchemaVersion>
9 <RootNamespace>ImageView</RootNamespace>
10 <ProjectGuid>{0B9A8A81-1902-4235-8A79-30704BB94DB7}</ProjectGuid>
11 <OutputPath>bin\$(Configuration)\</OutputPath>
12 <TargetFrameworkVersion>v3.0</TargetFrameworkVersion>
13 <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids>
16 <OldToolsVersion>2.0</OldToolsVersion>
17 <UpgradeBackupLocation>
18 </UpgradeBackupLocation>
20 <Import Project="$(MSBuildBinPath)\Microsoft.VisualBasic.targets" />
22 <Reference Include="System" />
23 <Reference Include="System.Xml" />
24 <Reference Include="WindowsBase" />
25 <Reference Include="PresentationCore" />
26 <Reference Include="PresentationFramework" />
27 <Reference Include="UIAutomationProvider" />
28 <Reference Include="UIAutomationTypes" />
31 <ApplicationDefinition Include="app.xaml">
32 <Generator>MSBuild:Compile</Generator>
33 <SubType>Designer</SubType>
34 </ApplicationDefinition>
35 <Page Include="default.xaml">
36 <Generator>MSBuild:Compile</Generator>
37 <SubType>Designer</SubType>
41 <Compile Include="app.xaml.vb">
42 <DependentUpon>app.xaml</DependentUpon>
43 <SubType>Code</SubType>
45 <Compile Include="default.xaml.vb">
46 <DependentUpon>default.xaml</DependentUpon>
47 <SubType>Code</SubType>
52 This project gets built by MSBuild on the commmand line.
53 Visual Studio "Whidbey" can also compile a project using only this data.
55 The build steps of a project are defined in the .target file referenced in the <Import>.
56 You can modify the steps involved in build.
58 You can also "execute" other targets besides the defaulttarget of build.
59 From a command prompt: msbuild myproj.csproj /t:TARGETNAME
60 Examples of TARGETNAME include: Build, Clean, CleanBuild, Run