mirror of
https://github.com/farcasclaudiu/SmartThreadPool.git
synced 2026-06-22 09:01:19 +03:00
117 lines
5.6 KiB
XML
117 lines
5.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'">
|
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
|
</PropertyGroup>
|
|
<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.0</TargetFrameworkVersion>
|
|
<SilverlightApplication>false</SilverlightApplication>
|
|
<ValidateXaml>true</ValidateXaml>
|
|
<ThrowErrorsInValidation>false</ThrowErrorsInValidation>
|
|
<FileUpgradeFlags>
|
|
</FileUpgradeFlags>
|
|
<OldToolsVersion>3.5</OldToolsVersion>
|
|
<UpgradeBackupLocation>
|
|
</UpgradeBackupLocation>
|
|
<TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
|
|
<SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>Bin\Debug\SilverLight\</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\SilverLight\</OutputPath>
|
|
<DefineConstants>TRACE;_SILVERLIGHT,_WINDOWS</DefineConstants>
|
|
<NoStdLib>true</NoStdLib>
|
|
<NoConfig>true</NoConfig>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Publish|AnyCPU'">
|
|
<OutputPath>..\publish\dist\bin\Silverlight\</OutputPath>
|
|
<DefineConstants>TRACE;_SILVERLIGHT,_WINDOWS,_PUBLISH</DefineConstants>
|
|
<Optimize>true</Optimize>
|
|
<NoStdLib>true</NoStdLib>
|
|
<DebugType>pdbonly</DebugType>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<CodeAnalysisLogFile>Bin\Release\SilverLight\SmartThreadPoolSL.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
|
|
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
|
|
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
<CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
|
|
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
|
<CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
|
|
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
|
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
|
|
<NoConfig>true</NoConfig>
|
|
</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\$(SilverlightVersion)\Microsoft.Silverlight.CSharp.targets" />
|
|
<Import Project="sign.proj" Condition="'$(Configuration)|$(Platform)' == 'Publish|AnyCPU'" />
|
|
<!-- 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> |