Click here to Skip to main content
15,880,469 members
Articles / Programming Languages / C# 4.0

Process Performance Determination in C# Part 4

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
29 Jun 2012CPOL4 min read 16.3K   144   2  
The program presented here provides a simple way to obtain process performance through Z-transformation.
  • ProcessPerformance4.zip
    • ProcessPerformance4
      • ExcelNORMSDIST
      • Local.testsettings
      • ProcessPerformance4.sln
      • ProcessPerformance4.suo
      • ProcessPerformance4.vsmdi
      • ProcessPerformance4
      • TestProcessPerformance4
      • TestResults
        • Sitt_JANAKA-PC 2012-06-21 15_25_25.trx
        • Sitt_JANAKA-PC 2012-06-21 15_37_11.trx
        • Sitt_JANAKA-PC 2012-06-21 15_37_40.trx
        • Sitt_JANAKA-PC 2012-06-21 15_55_12.trx
        • Sitt_JANAKA-PC 2012-06-21 15_55_12
          • In
            • JANAKA-PC
          • Out
            • AgentRestart.dat
        • Sitt_JANAKA-PC 2012-06-21 15_57_59.trx
        • Sitt_JANAKA-PC 2012-06-21 15_57_59
          • In
            • JANAKA-PC
          • Out
            • AgentRestart.dat
        • Sitt_JANAKA-PC 2012-06-21 16_01_07.trx
        • Sitt_JANAKA-PC 2012-06-21 16_07_56.trx
        • Sitt_JANAKA-PC 2012-06-21 17_13_54.trx
        • Sitt_JANAKA-PC 2012-06-21 17_14_22.trx
        • Sitt_JANAKA-PC 2012-06-26 15_56_21.trx
      • TraceAndTestImpact.testsettings
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.30703</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{F5609445-5D1B-45E8-89DD-A523E73879EA}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>ProcessPerformance4</RootNamespace>
    <AssemblyName>ProcessPerformance4</AssemblyName>
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
  </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>
  </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>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Data" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="ProcessPerformance4.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\ExcelNORMSDIST\ExcelNORMSDIST.csproj">
      <Project>{F56044F1-4BC1-42C9-8898-1BC14E656366}</Project>
      <Name>ExcelNORMSDIST</Name>
    </ProjectReference>
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</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
Foundasoft.com
Malaysia Malaysia
Consultant

Comments and Discussions