source: Scheduling/trunk/cs/EnhancedPrintPreview/PrintPreviewDemo/PrintPreviewDemo.csproj@ 1246

Last change on this file since 1246 was 1246, checked in by Sam Habiel, 13 years ago

Adding Enhanced Print Preview to Repo

File size: 3.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>8.0.50727</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{2046AD52-D15C-496B-97A9-B344072FC6AF}</ProjectGuid>
9 <OutputType>WinExe</OutputType>
10 <AppDesignerFolder>Properties</AppDesignerFolder>
11 <RootNamespace>PrintPreviewDemo</RootNamespace>
12 <AssemblyName>PrintPreviewDemo</AssemblyName>
13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14 <FileUpgradeFlags>
15 </FileUpgradeFlags>
16 <OldToolsVersion>2.0</OldToolsVersion>
17 <UpgradeBackupLocation />
18 </PropertyGroup>
19 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20 <DebugSymbols>true</DebugSymbols>
21 <DebugType>full</DebugType>
22 <Optimize>false</Optimize>
23 <OutputPath>bin\Debug\</OutputPath>
24 <DefineConstants>DEBUG;TRACE</DefineConstants>
25 <ErrorReport>prompt</ErrorReport>
26 <WarningLevel>4</WarningLevel>
27 </PropertyGroup>
28 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29 <DebugType>pdbonly</DebugType>
30 <Optimize>true</Optimize>
31 <OutputPath>bin\Release\</OutputPath>
32 <DefineConstants>TRACE</DefineConstants>
33 <ErrorReport>prompt</ErrorReport>
34 <WarningLevel>4</WarningLevel>
35 </PropertyGroup>
36 <ItemGroup>
37 <Reference Include="System" />
38 <Reference Include="System.Data" />
39 <Reference Include="System.Deployment" />
40 <Reference Include="System.Drawing" />
41 <Reference Include="System.Windows.Forms" />
42 <Reference Include="System.Xml" />
43 </ItemGroup>
44 <ItemGroup>
45 <Compile Include="Form1.cs">
46 <SubType>Form</SubType>
47 </Compile>
48 <Compile Include="Form1.Designer.cs">
49 <DependentUpon>Form1.cs</DependentUpon>
50 </Compile>
51 <Compile Include="Program.cs" />
52 <Compile Include="Properties\AssemblyInfo.cs" />
53 <EmbeddedResource Include="Form1.resx">
54 <SubType>Designer</SubType>
55 <DependentUpon>Form1.cs</DependentUpon>
56 </EmbeddedResource>
57 <EmbeddedResource Include="Properties\Resources.resx">
58 <Generator>ResXFileCodeGenerator</Generator>
59 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
60 <SubType>Designer</SubType>
61 </EmbeddedResource>
62 <Compile Include="Properties\Resources.Designer.cs">
63 <AutoGen>True</AutoGen>
64 <DependentUpon>Resources.resx</DependentUpon>
65 <DesignTime>True</DesignTime>
66 </Compile>
67 <None Include="Properties\Settings.settings">
68 <Generator>SettingsSingleFileGenerator</Generator>
69 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
70 </None>
71 <Compile Include="Properties\Settings.Designer.cs">
72 <AutoGen>True</AutoGen>
73 <DependentUpon>Settings.settings</DependentUpon>
74 <DesignTimeSharedInput>True</DesignTimeSharedInput>
75 </Compile>
76 <Compile Include="SampleDocument.cs" />
77 </ItemGroup>
78 <ItemGroup>
79 <ProjectReference Include="..\PrintPreview\PrintPreview.csproj">
80 <Project>{9E8D433B-EFD1-4253-BD2C-C4E0DB0BFD0E}</Project>
81 <Name>PrintPreview</Name>
82 </ProjectReference>
83 </ItemGroup>
84 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
85 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
86 Other similar extension points exist, see Microsoft.Common.targets.
87 <Target Name="BeforeBuild">
88 </Target>
89 <Target Name="AfterBuild">
90 </Target>
91 -->
92</Project>
Note: See TracBrowser for help on using the repository browser.