DrawTools.csproj
上传用户:sxsgcs
上传日期:2013-10-21
资源大小:110k
文件大小:6k
源码类别:

CAD

开发平台:

C#

  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2.   <PropertyGroup>
  3.     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4.     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5.     <ProductVersion>8.0.50727</ProductVersion>
  6.     <SchemaVersion>2.0</SchemaVersion>
  7.     <ProjectGuid>{56C76B98-1CE1-4156-885E-EC04150747DF}</ProjectGuid>
  8.     <OutputType>WinExe</OutputType>
  9.     <AppDesignerFolder>Properties</AppDesignerFolder>
  10.     <RootNamespace>DrawTools</RootNamespace>
  11.     <AssemblyName>DrawTools</AssemblyName>
  12.   </PropertyGroup>
  13.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14.     <DebugSymbols>true</DebugSymbols>
  15.     <DebugType>full</DebugType>
  16.     <Optimize>false</Optimize>
  17.     <OutputPath>binDebug</OutputPath>
  18.     <DefineConstants>DEBUG;TRACE</DefineConstants>
  19.     <ErrorReport>prompt</ErrorReport>
  20.     <WarningLevel>4</WarningLevel>
  21.   </PropertyGroup>
  22.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  23.     <DebugType>pdbonly</DebugType>
  24.     <Optimize>true</Optimize>
  25.     <OutputPath>binRelease</OutputPath>
  26.     <DefineConstants>TRACE</DefineConstants>
  27.     <ErrorReport>prompt</ErrorReport>
  28.     <WarningLevel>4</WarningLevel>
  29.   </PropertyGroup>
  30.   <ItemGroup>
  31.     <Reference Include="System" />
  32.     <Reference Include="System.Data" />
  33.     <Reference Include="System.Deployment" />
  34.     <Reference Include="System.Drawing" />
  35.     <Reference Include="System.Windows.Forms" />
  36.     <Reference Include="System.Xml" />
  37.   </ItemGroup>
  38.   <ItemGroup>
  39.     <Compile Include="CommandDelete.cs" />
  40.     <Compile Include="CommandDeleteAll.cs" />
  41.     <Compile Include="Command.cs" />
  42.     <Compile Include="CommandAdd.cs" />
  43.     <Compile Include="CommandChangeState.cs" />
  44.     <Compile Include="DrawArea.cs">
  45.       <SubType>UserControl</SubType>
  46.     </Compile>
  47.     <Compile Include="DrawArea.Designer.cs">
  48.       <DependentUpon>DrawArea.cs</DependentUpon>
  49.     </Compile>
  50.     <Compile Include="DrawEllipse.cs" />
  51.     <Compile Include="DrawLine.cs" />
  52.     <Compile Include="DrawObject.cs" />
  53.     <Compile Include="DrawPolygon.cs" />
  54.     <Compile Include="DrawRectangle.cs" />
  55.     <Compile Include="FrmAbout.cs">
  56.       <SubType>Form</SubType>
  57.     </Compile>
  58.     <Compile Include="FrmAbout.Designer.cs">
  59.       <DependentUpon>FrmAbout.cs</DependentUpon>
  60.     </Compile>
  61.     <Compile Include="MainForm.cs">
  62.       <SubType>Form</SubType>
  63.     </Compile>
  64.     <Compile Include="MainForm.Designer.cs">
  65.       <DependentUpon>MainForm.cs</DependentUpon>
  66.     </Compile>
  67.     <Compile Include="GraphicsList.cs" />
  68.     <Compile Include="GraphicsProperties.cs" />
  69.     <Compile Include="Program.cs" />
  70.     <Compile Include="PropertiesDialog.cs">
  71.       <SubType>Form</SubType>
  72.     </Compile>
  73.     <Compile Include="PropertiesDialog.Designer.cs">
  74.       <DependentUpon>PropertiesDialog.cs</DependentUpon>
  75.     </Compile>
  76.     <Compile Include="PropertiesAssemblyInfo.cs" />
  77.     <EmbeddedResource Include="DrawArea.resx">
  78.       <SubType>Designer</SubType>
  79.       <DependentUpon>DrawArea.cs</DependentUpon>
  80.     </EmbeddedResource>
  81.     <EmbeddedResource Include="FrmAbout.resx">
  82.       <SubType>Designer</SubType>
  83.       <DependentUpon>FrmAbout.cs</DependentUpon>
  84.     </EmbeddedResource>
  85.     <EmbeddedResource Include="MainForm.resx">
  86.       <SubType>Designer</SubType>
  87.       <DependentUpon>MainForm.cs</DependentUpon>
  88.     </EmbeddedResource>
  89.     <EmbeddedResource Include="PropertiesDialog.resx">
  90.       <SubType>Designer</SubType>
  91.       <DependentUpon>PropertiesDialog.cs</DependentUpon>
  92.     </EmbeddedResource>
  93.     <EmbeddedResource Include="PropertiesResources.resx">
  94.       <Generator>ResXFileCodeGenerator</Generator>
  95.       <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  96.       <SubType>Designer</SubType>
  97.     </EmbeddedResource>
  98.     <Compile Include="PropertiesResources.Designer.cs">
  99.       <AutoGen>True</AutoGen>
  100.       <DependentUpon>Resources.resx</DependentUpon>
  101.     </Compile>
  102.     <None Include="PropertiesSettings.settings">
  103.       <Generator>SettingsSingleFileGenerator</Generator>
  104.       <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  105.     </None>
  106.     <Compile Include="PropertiesSettings.Designer.cs">
  107.       <AutoGen>True</AutoGen>
  108.       <DependentUpon>Settings.settings</DependentUpon>
  109.       <DesignTimeSharedInput>True</DesignTimeSharedInput>
  110.     </Compile>
  111.     <Compile Include="Tool.cs" />
  112.     <Compile Include="ToolEllipse.cs" />
  113.     <Compile Include="ToolLine.cs" />
  114.     <Compile Include="ToolObject.cs" />
  115.     <Compile Include="ToolPointer.cs" />
  116.     <Compile Include="ToolPolygon.cs" />
  117.     <Compile Include="ToolRectangle.cs" />
  118.     <Compile Include="UndoManager.cs" />
  119.   </ItemGroup>
  120.   <ItemGroup>
  121.     <ProjectReference Include="..DocToolkitDocToolkit.csproj">
  122.       <Project>{7E3B9E32-DC2B-4E59-839A-42B8D4D4E5F4}</Project>
  123.       <Name>DocToolkit</Name>
  124.     </ProjectReference>
  125.   </ItemGroup>
  126.   <ItemGroup>
  127.     <EmbeddedResource Include="Rectangle.cur" />
  128.   </ItemGroup>
  129.   <ItemGroup>
  130.     <EmbeddedResource Include="Ellipse.cur" />
  131.     <EmbeddedResource Include="Line.cur" />
  132.     <EmbeddedResource Include="Pencil.cur" />
  133.     <EmbeddedResource Include="PolyHandle.cur" />
  134.   </ItemGroup>
  135.   <Import Project="$(MSBuildBinPath)Microsoft.CSharp.targets" />
  136.   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
  137.        Other similar extension points exist, see Microsoft.Common.targets.
  138.   <Target Name="BeforeBuild">
  139.   </Target>
  140.   <Target Name="AfterBuild">
  141.   </Target>
  142.   -->
  143. </Project>