mirror of
https://github.com/farcasclaudiu/SmartThreadPool.git
synced 2026-06-22 09:01:19 +03:00
48de8aca66
SILVERLIGHT changed to _SILVERLIGHT WindowsCE changed to _WINDOWS_CE _MONO was added
91 lines
3.8 KiB
XML
91 lines
3.8 KiB
XML
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>9.0.30729</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{A6590A96-22B3-4889-B80E-2C398810E441}</ProjectGuid>
|
|
<ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>Amib.Threading</RootNamespace>
|
|
<AssemblyName>SmartThreadPoolSL</AssemblyName>
|
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
|
<SilverlightApplication>false</SilverlightApplication>
|
|
<ValidateXaml>true</ValidateXaml>
|
|
<ThrowErrorsInValidation>false</ThrowErrorsInValidation>
|
|
<FileUpgradeFlags>
|
|
</FileUpgradeFlags>
|
|
<OldToolsVersion>3.5</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;_SILVERLIGHT,_WINDOWS</DefineConstants>
|
|
<NoStdLib>true</NoStdLib>
|
|
<NoConfig>true</NoConfig>
|
|
<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;_SILVERLIGHT,_WINDOWS</DefineConstants>
|
|
<NoStdLib>true</NoStdLib>
|
|
<NoConfig>true</NoConfig>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="mscorlib" />
|
|
<Reference Include="system" />
|
|
<Reference Include="System.Core" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<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="SLExt.cs" />
|
|
<Compile Include="SmartThreadPool.cs" />
|
|
<Compile Include="SmartThreadPool.ThreadEntry.cs" />
|
|
<Compile Include="Stopwatch.cs" />
|
|
<Compile Include="STPEventWaitHandle.cs" />
|
|
<Compile Include="STPPerformanceCounter.cs" />
|
|
<Compile Include="STPStartInfo.cs" />
|
|
<Compile Include="SynchronizedDictionary.cs" />
|
|
<Compile Include="WIGStartInfo.cs" />
|
|
<Compile Include="WorkItem.cs" />
|
|
<Compile Include="WorkItem.WorkItemResult.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="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\v3.0\Microsoft.Silverlight.CSharp.targets" Condition="" />
|
|
<!-- 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>
|
|
-->
|
|
<ProjectExtensions>
|
|
<VisualStudio>
|
|
<FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}">
|
|
<SilverlightProjectProperties />
|
|
</FlavorProperties>
|
|
</VisualStudio>
|
|
</ProjectExtensions>
|
|
</Project> |