mirror of
https://github.com/farcasclaudiu/SmartThreadPool.git
synced 2026-06-22 09:01:19 +03:00
760bc5d1a9
Also added: * Join, Choice, and Pipe to SmartThreadPool. * Local performance counters (for Mono, Silverlight, and WindowsCE)
66 lines
2.7 KiB
XML
66 lines
2.7 KiB
XML
<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>
|
|
<ProjectGuid>{74D4C33F-7CC8-4B2A-A7DF-D8B6E63B6EBD}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<NoStandardLibraries>false</NoStandardLibraries>
|
|
<AssemblyName>SmartThreadPool</AssemblyName>
|
|
<RootNamespace>Amib.Threading</RootNamespace>
|
|
<FileUpgradeFlags>
|
|
</FileUpgradeFlags>
|
|
<OldToolsVersion>2.0</OldToolsVersion>
|
|
<UpgradeBackupLocation>
|
|
</UpgradeBackupLocation>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>.\bin\Debug\</OutputPath>
|
|
<DefineConstants>TRACE;DEBUG;_WINDOWS</DefineConstants>
|
|
<DocumentationFile>
|
|
</DocumentationFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>.\bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE;_WINDOWS</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Web" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="WorkItem.WorkItemResult.cs" />
|
|
<Compile Include="CallerThreadContext.cs" />
|
|
<Compile Include="CanceledWorkItemsGroup.cs" />
|
|
<Compile Include="EventWaitHandleFactory.cs" />
|
|
<Compile Include="Exceptions.cs" />
|
|
<Compile Include="Interfaces.cs" />
|
|
<Compile Include="InternalInterfaces.cs" />
|
|
<Compile Include="PriorityQueue.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="SmartThreadPool.cs" />
|
|
<Compile Include="STPEventWaitHandle.cs" />
|
|
<Compile Include="STPPerformanceCounter.cs" />
|
|
<Compile Include="STPStartInfo.cs" />
|
|
<Compile Include="SynchronizedDictionary.cs" />
|
|
<Compile Include="SmartThreadPool.ThreadEntry.cs" />
|
|
<Compile Include="WIGStartInfo.cs" />
|
|
<Compile Include="WorkItem.cs" />
|
|
<Compile Include="WorkItemFactory.cs" />
|
|
<Compile Include="WorkItemInfo.cs" />
|
|
<Compile Include="WorkItemResultTWrapper.cs" />
|
|
<Compile Include="WorkItemsGroup.cs" />
|
|
<Compile Include="WorkItemsGroupBase.cs" />
|
|
<Compile Include="WorkItemsQueue.cs" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
|
|
<ProjectExtensions>
|
|
<VisualStudio AllowExistingFolder="true" />
|
|
</ProjectExtensions>
|
|
</Project> |