Click here to Skip to main content
15,884,099 members
Articles / Programming Languages / C#

Integration: Mechanics + Hydraulics + Navigation

Rate me:
Please Sign up or sign in to vote.
5.00/5 (46 votes)
3 Feb 2011CPOL21 min read 61.5K   6.1K   88  
Sample of integration of branches of engineering.
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>9.0.30729</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{2E77AEE6-D898-4535-893A-CDA4C7F5D54B}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>Chart</RootNamespace>
    <AssemblyName>Chart</AssemblyName>
    <SccProjectName>
    </SccProjectName>
    <SccLocalPath>
    </SccLocalPath>
    <SccAuxPath>
    </SccAuxPath>
    <SccProvider>
    </SccProvider>
    <FileUpgradeFlags>
    </FileUpgradeFlags>
    <OldToolsVersion>3.5</OldToolsVersion>
    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
    <UpgradeBackupLocation>
    </UpgradeBackupLocation>
    <IsWebBootstrapper>false</IsWebBootstrapper>
    <PublishUrl>publish\</PublishUrl>
    <Install>true</Install>
    <InstallFrom>Disk</InstallFrom>
    <UpdateEnabled>false</UpdateEnabled>
    <UpdateMode>Foreground</UpdateMode>
    <UpdateInterval>7</UpdateInterval>
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
    <UpdatePeriodically>false</UpdatePeriodically>
    <UpdateRequired>false</UpdateRequired>
    <MapFileExtensions>true</MapFileExtensions>
    <ApplicationRevision>0</ApplicationRevision>
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
    <UseApplicationTrust>false</UseApplicationTrust>
    <BootstrapperEnabled>true</BootstrapperEnabled>
    <TargetFrameworkProfile />
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <DocumentationFile>bin\Debug\Chart.XML</DocumentationFile>
    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.Data" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Windows.Forms" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="ChartPerformer.cs" />
    <Compile Include="Classes\DataTextChooser.cs" />
    <Compile Include="DictionaryPerformer.cs" />
    <Compile Include="Forms\FormTextStyleEditor.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Forms\FormTextStyleEditor.Designer.cs">
      <DependentUpon>FormTextStyleEditor.cs</DependentUpon>
    </Compile>
    <Compile Include="Indicators\MouseChartObjectIndicator.cs" />
    <Compile Include="Interfaces\IChartProperiesFormCreator.cs" />
    <Compile Include="Interfaces\IChartResizer.cs" />
    <Compile Include="Interfaces\IMouseChartIndicator.cs" />
    <Compile Include="LogarithmCoordinator.cs" />
    <Compile Include="Panels\PanelChart.cs">
      <SubType>Component</SubType>
    </Compile>
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="SerializationPerformer.cs" />
    <Compile Include="SimpleCoordinator.cs" />
    <Compile Include="StaticExtension.cs" />
    <Compile Include="UserControls\UserControlChart.cs">
      <SubType>UserControl</SubType>
    </Compile>
    <Compile Include="UserControls\UserControlChart.Designer.cs">
      <DependentUpon>UserControlChart.cs</DependentUpon>
    </Compile>
    <Compile Include="UserControls\UserControlChartDriver.cs">
      <SubType>UserControl</SubType>
    </Compile>
    <Compile Include="UserControls\UserControlChartDriver.Designer.cs">
      <DependentUpon>UserControlChartDriver.cs</DependentUpon>
    </Compile>
    <Compile Include="UserControls\UserControlControlInternalChart.cs">
      <SubType>UserControl</SubType>
    </Compile>
    <Compile Include="UserControls\UserControlControlInternalChart.Designer.cs">
      <DependentUpon>UserControlControlInternalChart.cs</DependentUpon>
    </Compile>
    <Compile Include="UserControls\UserControlCoordinateIndication.cs">
      <SubType>UserControl</SubType>
    </Compile>
    <Compile Include="UserControls\UserControlCoordinateIndication.Designer.cs">
      <DependentUpon>UserControlCoordinateIndication.cs</DependentUpon>
    </Compile>
    <Compile Include="UserControls\UserControlExternalChart.cs">
      <SubType>UserControl</SubType>
    </Compile>
    <Compile Include="UserControls\UserControlExternalChart.Designer.cs">
      <DependentUpon>UserControlExternalChart.cs</DependentUpon>
    </Compile>
    <Compile Include="UserControls\UserControlFullCoordinateIndication.cs">
      <SubType>UserControl</SubType>
    </Compile>
    <Compile Include="UserControls\UserControlFullCoordinateIndication.Designer.cs">
      <DependentUpon>UserControlFullCoordinateIndication.cs</DependentUpon>
    </Compile>
    <Compile Include="Utils\SeriesPainterControlPovider.cs" />
  </ItemGroup>
  <ItemGroup>
    <Service Include="{B4F97281-0DBD-4835-9ED8-7DFB966E87FF}" />
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="Forms\FormTextStyleEditor.resx">
      <SubType>Designer</SubType>
      <DependentUpon>FormTextStyleEditor.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Panels\PanelChart.resx">
      <DependentUpon>PanelChart.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="UserControls\UserControlChart.resx">
      <DependentUpon>UserControlChart.cs</DependentUpon>
      <SubType>Designer</SubType>
    </EmbeddedResource>
    <EmbeddedResource Include="UserControls\UserControlChartDriver.resx">
      <SubType>Designer</SubType>
      <DependentUpon>UserControlChartDriver.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="UserControls\UserControlControlInternalChart.resx">
      <SubType>Designer</SubType>
      <DependentUpon>UserControlControlInternalChart.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="UserControls\UserControlCoordinateIndication.resx">
      <SubType>Designer</SubType>
      <DependentUpon>UserControlCoordinateIndication.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="UserControls\UserControlExternalChart.resx">
      <SubType>Designer</SubType>
      <DependentUpon>UserControlExternalChart.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="UserControls\UserControlFullCoordinateIndication.resx">
      <SubType>Designer</SubType>
      <DependentUpon>UserControlFullCoordinateIndication.cs</DependentUpon>
    </EmbeddedResource>
  </ItemGroup>
  <ItemGroup>
    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
      <Install>false</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
      <Visible>False</Visible>
      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
      <Install>false</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
      <Install>false</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.5</ProductName>
      <Install>true</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.5 SP1</ProductName>
      <Install>false</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.VisualBasic.PowerPacks.10.0">
      <Visible>False</Visible>
      <ProductName>Microsoft Visual Basic PowerPacks 10.0</ProductName>
      <Install>true</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
      <Visible>False</Visible>
      <ProductName>Windows Installer 3.1</ProductName>
      <Install>true</Install>
    </BootstrapperPackage>
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\Chart.Drawing\Chart.Drawing.csproj">
      <Project>{6881187E-42EB-4994-A557-8601C60E9BA6}</Project>
      <Name>Chart.Drawing</Name>
    </ProjectReference>
    <ProjectReference Include="..\OfficePickers\OfficePickers.csproj">
      <Project>{CAD56B75-481B-4C76-B090-4BC2FF5E5681}</Project>
      <Name>OfficePickers</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup />
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
Russian Federation Russian Federation
Ph. D. Petr Ivankov worked as scientific researcher at Russian Mission Control Centre since 1978 up to 2000. Now he is engaged by Aviation training simulators http://dinamika-avia.com/ . His additional interests are:

1) Noncommutative geometry

http://front.math.ucdavis.edu/author/P.Ivankov

2) Literary work (Russian only)

http://zhurnal.lib.ru/editors/3/3d_m/

3) Scientific articles
http://arxiv.org/find/all/1/au:+Ivankov_Petr/0/1/0/all/0/1

Comments and Discussions