mirror of
https://github.com/farcasclaudiu/SmartThreadPool.git
synced 2026-06-22 13:01:23 +03:00
760bc5d1a9
Also added: * Join, Choice, and Pipe to SmartThreadPool. * Local performance counters (for Mono, Silverlight, and WindowsCE)
144 lines
5.3 KiB
XML
144 lines
5.3 KiB
XML
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
|
<PropertyGroup>
|
|
<ProjectType>Local</ProjectType>
|
|
<ProductVersion>9.0.30729</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{AE943A5A-7CFD-4E0D-BA51-FB763AAEA9A3}</ProjectGuid>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ApplicationIcon>App.ico</ApplicationIcon>
|
|
<AssemblyKeyContainerName>
|
|
</AssemblyKeyContainerName>
|
|
<AssemblyName>STPExamples</AssemblyName>
|
|
<AssemblyOriginatorKeyFile>
|
|
</AssemblyOriginatorKeyFile>
|
|
<DefaultClientScript>JScript</DefaultClientScript>
|
|
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>
|
|
<DefaultTargetSchema>IE50</DefaultTargetSchema>
|
|
<DelaySign>false</DelaySign>
|
|
<OutputType>Exe</OutputType>
|
|
<RootNamespace>STPExamples</RootNamespace>
|
|
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
|
|
<StartupObject>STPExamples.ParallelQuickSort</StartupObject>
|
|
<FileUpgradeFlags>
|
|
</FileUpgradeFlags>
|
|
<UpgradeBackupLocation>
|
|
</UpgradeBackupLocation>
|
|
<OldToolsVersion>2.0</OldToolsVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
|
|
<BaseAddress>285212672</BaseAddress>
|
|
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
|
|
<ConfigurationOverrideFile>
|
|
</ConfigurationOverrideFile>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<DocumentationFile>
|
|
</DocumentationFile>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<FileAlignment>4096</FileAlignment>
|
|
<NoStdLib>false</NoStdLib>
|
|
<NoWarn>
|
|
</NoWarn>
|
|
<Optimize>false</Optimize>
|
|
<RegisterForComInterop>false</RegisterForComInterop>
|
|
<RemoveIntegerChecks>false</RemoveIntegerChecks>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<WarningLevel>4</WarningLevel>
|
|
<DebugType>full</DebugType>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
|
|
<BaseAddress>285212672</BaseAddress>
|
|
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
|
|
<ConfigurationOverrideFile>
|
|
</ConfigurationOverrideFile>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<DocumentationFile>
|
|
</DocumentationFile>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<FileAlignment>4096</FileAlignment>
|
|
<NoStdLib>false</NoStdLib>
|
|
<NoWarn>
|
|
</NoWarn>
|
|
<Optimize>true</Optimize>
|
|
<RegisterForComInterop>false</RegisterForComInterop>
|
|
<RemoveIntegerChecks>false</RemoveIntegerChecks>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<WarningLevel>4</WarningLevel>
|
|
<DebugType>none</DebugType>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System">
|
|
<Name>System</Name>
|
|
</Reference>
|
|
<Reference Include="System.Data">
|
|
<Name>System.Data</Name>
|
|
</Reference>
|
|
<Reference Include="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=969db8053d3322ac, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\..\..\..\Program Files\Microsoft Visual Studio 8\SmartDevices\SDK\CompactFramework\2.0\v2.0\WindowsCE\System.Drawing.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System.Xml">
|
|
<Name>System.XML</Name>
|
|
</Reference>
|
|
<ProjectReference Include="..\SmartThreadPool\SmartThreadPool.csproj">
|
|
<Name>SmartThreadPool</Name>
|
|
<Project>{8684FC56-A679-4E2E-8F96-E172FB062EB6}</Project>
|
|
<Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="App.ico" />
|
|
<Compile Include="AssemblyInfo.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="CatchExceptionExample.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="CooperativeCancelExample.cs" />
|
|
<Compile Include="GetExceptionExample.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="OnWIGIdleEventExample.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="ParallelQuickSort.cs" />
|
|
<Compile Include="PriorityExample.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="SimpleExample.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="SuspendedSTPStartExample.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="SuspendedWIGStartExample.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="ThreadEventsExample.cs" />
|
|
<Compile Include="WaitForAllExample.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="WaitForAnyExample.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="WaitForIdleExample.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="WorkItemsGroupExample.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
<PropertyGroup>
|
|
<PreBuildEvent>
|
|
</PreBuildEvent>
|
|
<PostBuildEvent>
|
|
</PostBuildEvent>
|
|
</PropertyGroup>
|
|
</Project> |